diff --git a/.gitignore b/.gitignore
index 697994b..10dd0d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,3 +19,6 @@ yarn-error.log
/.vscode
/storage/framework/views/*.php
```
+/storage/*
+/storage/*/*/*
+!/storage/.gitkeep
diff --git a/app/Http/Controllers/Assessment/AssessmentController.php b/app/Http/Controllers/Assessment/AssessmentController.php
index 8ec2438..dcbc7a2 100644
--- a/app/Http/Controllers/Assessment/AssessmentController.php
+++ b/app/Http/Controllers/Assessment/AssessmentController.php
@@ -25,7 +25,11 @@ public function show(User $user, assessment $assessment)
{
$jcp = $user->jcp()
->with('skills.category') // Eager load skills and their categories
- ->where('assessment_id', $assessment->id)->get();
+ ->where('assessment_id', $assessment->id)
+ ->where('is_active', 1) // Only load jcp where is_active is 1
+ ->get();
+
+
return view('assessments.show', compact('jcp', 'user', 'assessment'));
}
@@ -46,7 +50,7 @@ public function storeEmployee(User $user, assessment $assessment, jcp $jcp)
$mean = (array_sum($data['questions']) / $maxScore) * 100;
//Update enroll status
- $user->assessments()->updateExistingPivot($assessment->id, ['status' => 1]);
+ // $user->assessments()->updateExistingPivot($assessment->id, ['status' => 1]);
$user->update(['competency_rating' => $mean]);
diff --git a/app/Livewire/System/Jcps/JCPTable.php b/app/Livewire/System/Jcps/JCPTable.php
new file mode 100644
index 0000000..304e139
--- /dev/null
+++ b/app/Livewire/System/Jcps/JCPTable.php
@@ -0,0 +1,15 @@
+ jcp::search(request('search'))->paginate(10)]);
+ }
+}
diff --git a/app/Livewire/System/Org/OrgTable.php b/app/Livewire/System/Org/OrgTable.php
new file mode 100644
index 0000000..6f6b9c1
--- /dev/null
+++ b/app/Livewire/System/Org/OrgTable.php
@@ -0,0 +1,24 @@
+ function ($query) {
+ $query->where('is_active', 1);
+ }])->search($this->search)->paginate(10);
+ return view('livewire.system.org.org-table', ['users' => $users]);
+ }
+}
diff --git a/app/Livewire/System/Qualifications/QualificationsTable.php b/app/Livewire/System/Qualifications/QualificationsTable.php
new file mode 100644
index 0000000..8b9fab4
--- /dev/null
+++ b/app/Livewire/System/Qualifications/QualificationsTable.php
@@ -0,0 +1,16 @@
+ qualification::search($this->search)->paginate(10)]);
+ }
+}
diff --git a/app/Models/Audit/assessment.php b/app/Models/Audit/assessment.php
index a689213..7999d99 100644
--- a/app/Models/Audit/assessment.php
+++ b/app/Models/Audit/assessment.php
@@ -16,8 +16,11 @@ public function jcp()
return $this->hasMany(jcp::class, 'assessment_id');
}
+
public function scopeSearch($query, $search)
{
return $query->where('assessment_title', 'like', '%' . $search . '%');
}
+
+
}
diff --git a/app/Models/Audit/jcp.php b/app/Models/Audit/jcp.php
index 36065c1..8dcef8f 100644
--- a/app/Models/Audit/jcp.php
+++ b/app/Models/Audit/jcp.php
@@ -27,8 +27,14 @@ public function skills()
return $this->belongsToMany(skill::class)->withPivot('user_rating', 'supervisor_rating');
}
-public function qualifications(){
- return $this->belongsToMany(qualification::class, 'jcp_qualification');
+ public function qualifications(){
+ return $this->belongsToMany(qualification::class, 'jcp_qualification');
-}
+ }
+
+ public function scopeSearch($query, $val)
+ {
+ return $query->where('position_title', 'like', '%'.$val.'%')
+ ->orWhere('job_description', 'like', '%'.$val.'%');
+ }
}
diff --git a/app/Models/Audit/qualification.php b/app/Models/Audit/qualification.php
index f6dd1b8..4f68df3 100644
--- a/app/Models/Audit/qualification.php
+++ b/app/Models/Audit/qualification.php
@@ -21,4 +21,9 @@ public function user()
{
return $this->belongsToMany(User::class, 'qualification_user');
}
+
+ public function scopeSearch($query, $val)
+ {
+ $query->where('qualification_title', 'like', '%'.$val.'%');
+ }
}
diff --git a/composer.json b/composer.json
index e843903..5c1fba7 100644
--- a/composer.json
+++ b/composer.json
@@ -8,6 +8,8 @@
"php": "^8.2",
"andreiio/blade-iconoir": "^4.1",
"blade-ui-kit/blade-icons": "^1.6",
+ "codeat3/blade-google-material-design-icons": "^1.19",
+ "codeat3/blade-iconpark": "^1.6",
"laravel/framework": "^11.0",
"laravel/jetstream": "^5.0",
"laravel/sanctum": "^4.0",
diff --git a/composer.lock b/composer.lock
index f2afe94..db428d5 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": "d84606668739126d5de6a076be0c93c6",
+ "content-hash": "7c03e90cb09fd9d6a26a7ce7a8d4178f",
"packages": [
{
"name": "andreiio/blade-iconoir",
@@ -323,6 +323,150 @@
],
"time": "2024-02-09T16:56:22+00:00"
},
+ {
+ "name": "codeat3/blade-google-material-design-icons",
+ "version": "1.19.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/codeat3/blade-google-material-design-icons.git",
+ "reference": "7a20f3a763edc54dba69725660eff2b2e99f8dad"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/codeat3/blade-google-material-design-icons/zipball/7a20f3a763edc54dba69725660eff2b2e99f8dad",
+ "reference": "7a20f3a763edc54dba69725660eff2b2e99f8dad",
+ "shasum": ""
+ },
+ "require": {
+ "blade-ui-kit/blade-icons": "^1.1",
+ "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
+ "php": "^7.4|^8.0"
+ },
+ "require-dev": {
+ "codeat3/blade-icon-generation-helpers": "^0.8",
+ "codeat3/phpcs-styles": "^1.0",
+ "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
+ "phpunit/phpunit": "^9.0|^10.5|^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Codeat3\\BladeGoogleMaterialDesignIcons\\BladeGoogleMaterialDesignIconsServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Codeat3\\BladeGoogleMaterialDesignIcons\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Swapnil Sarwe",
+ "homepage": "https://swapnilsarwe.com"
+ },
+ {
+ "name": "Dries Vints",
+ "homepage": "https://driesvints.com"
+ }
+ ],
+ "description": "A package to easily make use of \"Google Fonts Material Icons\" in your Laravel Blade views.",
+ "homepage": "https://github.com/codeat3/blade-google-material-design-icons",
+ "keywords": [
+ "blade",
+ "google",
+ "icons",
+ "laravel",
+ "material"
+ ],
+ "support": {
+ "issues": "https://github.com/codeat3/blade-google-material-design-icons/issues",
+ "source": "https://github.com/codeat3/blade-google-material-design-icons/tree/1.19.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/swapnilsarwe",
+ "type": "github"
+ }
+ ],
+ "time": "2024-02-28T15:02:13+00:00"
+ },
+ {
+ "name": "codeat3/blade-iconpark",
+ "version": "1.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/codeat3/blade-iconpark.git",
+ "reference": "8d1b1a1c832134128bb6013f92487e27cb140405"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/codeat3/blade-iconpark/zipball/8d1b1a1c832134128bb6013f92487e27cb140405",
+ "reference": "8d1b1a1c832134128bb6013f92487e27cb140405",
+ "shasum": ""
+ },
+ "require": {
+ "blade-ui-kit/blade-icons": "^1.1",
+ "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
+ "php": "^7.4|^8.0"
+ },
+ "require-dev": {
+ "codeat3/blade-icon-generation-helpers": "^0.8",
+ "codeat3/phpcs-styles": "^1.0",
+ "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
+ "phpunit/phpunit": "^9.0|^10.5|^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Codeat3\\BladeIconpark\\BladeIconparkServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Codeat3\\BladeIconpark\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Swapnil Sarwe",
+ "homepage": "https://swapnilsarwe.com"
+ },
+ {
+ "name": "Dries Vints",
+ "homepage": "https://driesvints.com"
+ }
+ ],
+ "description": "A package to easily make use of \"Icon Park Icons\" in your Laravel Blade views. ",
+ "homepage": "https://github.com/codeat3/blade-iconpark",
+ "keywords": [
+ "blade",
+ "iconpark",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/codeat3/blade-iconpark/issues",
+ "source": "https://github.com/codeat3/blade-iconpark/tree/1.6.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/swapnilsarwe",
+ "type": "github"
+ }
+ ],
+ "time": "2024-02-28T15:08:03+00:00"
+ },
{
"name": "dasprid/enum",
"version": "1.0.5",
diff --git a/database/factories/Audit/assessmentsFactory.php b/database/factories/Audit/assessmentFactory.php
similarity index 100%
rename from database/factories/Audit/assessmentsFactory.php
rename to database/factories/Audit/assessmentFactory.php
diff --git a/database/factories/Audit/categoryFactory.php b/database/factories/Audit/categoryFactory.php
index 9fc5216..a94ad6a 100644
--- a/database/factories/Audit/categoryFactory.php
+++ b/database/factories/Audit/categoryFactory.php
@@ -16,9 +16,15 @@ class categoryFactory extends Factory
*/
public function definition(): array
{
+ $categories = [
+ "Behavioral",
+ "Knowledge",
+ "Basic Digital",
+ "Advanced Digital",
+ ];
return [
//
- 'category_title' => $this->faker->name(),
+ 'category_title' => $this->faker->unique()->randomElement($categories),
];
}
}
diff --git a/database/factories/Audit/jcpFactory.php b/database/factories/Audit/jcpFactory.php
index 5e11355..11b86cc 100644
--- a/database/factories/Audit/jcpFactory.php
+++ b/database/factories/Audit/jcpFactory.php
@@ -23,11 +23,12 @@ public function definition(): array
return [
//This populates the jcp model fields
'assessment_id' => $this->faker->randomElement($assessment_ids),
- 'user_id' => $this->faker->randomElement($user_ids),
+ 'user_id' => $this->faker->unique()->randomElement($user_ids),
'position_title' => $this->faker->jobTitle(),
'job_grade' => $this->faker->numerify('B-#'),
'duty_station' => $this->faker->city(),
'job_purpose' => $this->faker->realText($maxNbChars = 200, $indexSize = 2),
+ 'is_active' => 1,
];
}
}
diff --git a/database/factories/Audit/qualificationFactory.php b/database/factories/Audit/qualificationFactory.php
index 386e545..d36aaf6 100644
--- a/database/factories/Audit/qualificationFactory.php
+++ b/database/factories/Audit/qualificationFactory.php
@@ -20,7 +20,7 @@ public function definition(): array
return [
//
- 'qualification_title' => $this->faker->randomElement($qualifications),
+ 'qualification_title' => $this->faker->unique()->randomElement($qualifications),
];
}
}
diff --git a/database/factories/Audit/skillFactory.php b/database/factories/Audit/skillFactory.php
index e5bcf43..df1ec91 100644
--- a/database/factories/Audit/skillFactory.php
+++ b/database/factories/Audit/skillFactory.php
@@ -18,11 +18,46 @@ class skillFactory extends Factory
public function definition(): array
{
$category_ids = category::select('id')->get();
+ $skills = [
+ "Programming Languages",
+ "Web Development",
+ "Mobile App Development",
+ "Database Management",
+ "Data Analysis",
+ "Machine Learning",
+ "Artificial Intelligence",
+ "Cybersecurity",
+ "Cloud Computing",
+ "Network Administration",
+ "UI/UX Design",
+ "Graphic Design",
+ "Project Management",
+ "Agile Methodologies",
+ "DevOps",
+ "Quality Assurance",
+ "Technical Writing",
+ "Content Writing",
+ "Digital Marketing",
+ "Search Engine Optimization (SEO)",
+ "Social Media Management",
+ "Video Editing",
+ "Photography",
+ "Content Management Systems (CMS)",
+ "E-commerce Platforms",
+ "Customer Relationship Management (CRM)",
+ "Salesforce",
+ "Business Intelligence",
+ "Blockchain Development",
+ "Virtual Reality (VR) Development",
+ "Augmented Reality (AR) Development"
+ ];
+
return [
//
'skill_category_id' => $this->faker->randomElement($category_ids),
- 'skill_title' => $this->faker->name(),
+ 'skill_title' => $this->faker->unique()->randomElement($skills),
+ 'skill_description' => $this->faker->realText($maxNbChars = 200, $indexSize = 2),
];
}
}
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
index e0d9f09..ed58ff6 100644
--- a/database/factories/UserFactory.php
+++ b/database/factories/UserFactory.php
@@ -27,6 +27,7 @@ class UserFactory extends Factory
public function definition(): array
{
return [
+ 'salary_ref_number' => $this->faker->unique()->randomNumber(8),
'first_name' => fake()->firstName(),
'last_name' => fake()->lastName(),
'email' => fake()->unique()->safeEmail(),
diff --git a/database/migrations/2024_03_22_094647_create_jcps_table.php b/database/migrations/2024_03_22_094647_create_jcps_table.php
index f8fed39..199df0c 100644
--- a/database/migrations/2024_03_22_094647_create_jcps_table.php
+++ b/database/migrations/2024_03_22_094647_create_jcps_table.php
@@ -20,6 +20,7 @@ public function up(): void
$table->string('job_grade');
$table->string('duty_station');
$table->string('job_purpose');
+ $table->integer('is_active')->default(1);
// Add a unique constraint
$table->unique(['user_id', 'assessment_id']);
diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php
index 051940d..6c0e11b 100644
--- a/database/seeders/DatabaseSeeder.php
+++ b/database/seeders/DatabaseSeeder.php
@@ -19,10 +19,10 @@ class DatabaseSeeder extends Seeder
*/
public function run(): void
{
- $this->command->getOutput()->progressStart(6);
+ $this->command->getOutput()->progressStart(8);
$this->command->info(' Creating Audit Assessments...');
- assessment::factory(3)->create();
+ assessment::factory(1)->create();
$this->command->getOutput()->progressAdvance();
$this->command->info(' Adding System Qualifications...');
@@ -34,7 +34,7 @@ public function run(): void
$this->command->getOutput()->progressAdvance();
$this->command->info(' Creating Audit jcp...');
- jcp::factory(5)->create();
+ jcp::factory(8)->create();
$this->command->getOutput()->progressAdvance();
$this->command->info(' Creating Audit Skill Categories...');
@@ -44,12 +44,52 @@ public function run(): void
$this->command->info(' Creating Audit Skills and associating with jcp...');
$skills = skill::factory(20)->create();
jcp::All()->each(function ($jcp) use ($skills) {
- $jcp->skills()->saveMany($skills);
+ $jcp->skills()->saveMany($skills->random(rand(1, $skills->count()))->all());
});
$this->command->getOutput()->progressAdvance();
$this->command->info(' Enrolling Users to Assessments...');
- enrollment::factory(10)->create();
+ $users = User::all();
+ $assessments = assessment::all();
+
+ foreach ($users as $index => $user) {
+ $assessment_id = $assessments[$index % $assessments->count()]->id;
+
+ // Check if the user is already enrolled in the assessment
+ $existingEnrollment = enrollment::where('user_id', $user->id)
+ ->where('assessment_id', $assessment_id)
+ ->first();
+
+ // If the user is not already enrolled, create the enrollment
+ if (!$existingEnrollment) {
+ enrollment::factory()->create([
+ 'user_id' => $user->id,
+ 'assessment_id' => $assessment_id,
+ ]);
+ }
+ }
+ $this->command->getOutput()->progressAdvance();
+
+
+ $this->command->info(' Assigning Qualifications to Users...');
+ $qualifications = qualification::all();
+
+ foreach ($users as $user) {
+ $user->qualifications()->saveMany($qualifications);
+ }
+
+ $this->command->getOutput()->progressAdvance();
+
+ $this->command->info(' Assigning Qualifications to jcps...');
+ $jcps = jcp::all();
+
+ foreach ($jcps as $jcp) {
+ $jcp->qualifications()->saveMany($qualifications);
+ }
+
+ $this->command->getOutput()->progressAdvance();
+
+
$this->command->getOutput()->progressFinish();
diff --git a/resources/views/assessments/index.blade.php b/resources/views/assessments/index.blade.php
index bdd3b20..4726aae 100644
--- a/resources/views/assessments/index.blade.php
+++ b/resources/views/assessments/index.blade.php
@@ -11,17 +11,20 @@
@forelse ($assessments as $a)
-
+
+
+
+
Telecom Skills Audit
-
+
+
+ @else
+
+
Your Job Competency Profile is not complete. Please talk to your supervisor.
+
+
+ @endif
+
+
+
+
diff --git a/resources/views/directories/jcp/index.blade.php b/resources/views/directories/jcp/index.blade.php
index 1c492dd..b5673d7 100644
--- a/resources/views/directories/jcp/index.blade.php
+++ b/resources/views/directories/jcp/index.blade.php
@@ -7,6 +7,7 @@
+ @livewire('system.jcps.j-c-p-table')
diff --git a/resources/views/directories/org/index.blade.php b/resources/views/directories/org/index.blade.php
new file mode 100644
index 0000000..00147fc
--- /dev/null
+++ b/resources/views/directories/org/index.blade.php
@@ -0,0 +1,17 @@
+
+
+
+
+ {{ __('Organisation Directory') }}
+
+
+
+
+ @livewire('system.org.org-table')
+
+
+
+
+
+
+
diff --git a/resources/views/directories/qualifications/index.blade.php b/resources/views/directories/qualifications/index.blade.php
index 21a9349..8be7593 100644
--- a/resources/views/directories/qualifications/index.blade.php
+++ b/resources/views/directories/qualifications/index.blade.php
@@ -11,6 +11,7 @@
+ @livewire('system.qualifications.qualifications-table')
diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php
index 3a808d7..8e972e4 100644
--- a/resources/views/layouts/app.blade.php
+++ b/resources/views/layouts/app.blade.php
@@ -33,7 +33,7 @@
+ class="z-100 bg-gradient-to-br from-fuchsia-950 to-slate-800 lg:fixed sm:fixed text-gray-900 w-56 px-2 py-4 absolute inset-y-0 left-0 top-20 bottom-0 transform md:translate-x-0 overflow-y-auto transition ease-in-out duration-200 shadow-lg">
@@ -79,7 +79,7 @@ class="z-10 bg-gradient-to-br from-fuchsia-950 to-slate-800 lg:fixed sm:fixed te
Dashboard
-
+
My Assessments
diff --git a/resources/views/livewire/system/jcps/j-c-p-table.blade.php b/resources/views/livewire/system/jcps/j-c-p-table.blade.php
new file mode 100644
index 0000000..44b40c2
--- /dev/null
+++ b/resources/views/livewire/system/jcps/j-c-p-table.blade.php
@@ -0,0 +1,101 @@
+
+ {{-- Stop trying to control. --}}
+
+
+
+
+
+
+
+
+
+
+
+ Add jcp
+
+
+
+
+
+
+
+
+
+
+
+ jcp Title
+ Grade
+
+ Description
+ Is Active
+ Actions
+
+
+
+
+
+
+ @foreach ($jcps as $jcp)
+
+
+ {{ $jcp->position_title }}
+
+
+ {{ $jcp->job_grade }}
+
+
+ {{ Str::limit($jcp->job_purpose,50) }}
+
+
+ @if($jcp->is_active == 1)
+
+ @else
+
+ @endif
+
+
+
+
+
+
+ ...
+
+
+
+
+
+
+ Edit
+
+
+
+
+ Delete
+
+
+
+
+
+
+ {{--
--}}
+
+
+
+
+
+
+
+
+
+
+ @endforeach
+
+
+
+
+
+
+ {{ $jcps->links() }}
+
+
+
diff --git a/resources/views/livewire/system/org/org-table.blade.php b/resources/views/livewire/system/org/org-table.blade.php
new file mode 100644
index 0000000..2d92e0e
--- /dev/null
+++ b/resources/views/livewire/system/org/org-table.blade.php
@@ -0,0 +1,103 @@
+
+ {{-- Stop trying to control. --}}
+
+
+
+
+
+
+
+
+
+
+
+
+ Employee
+
+
+
+
+
+
+
+
+
+
+
+ Salary Ref:
+ Name
+ Email
+ Job Title
+ Skill Points
+ Actions
+
+
+
+
+
+
+
+
+
+ @foreach ($users as $user)
+
+
+ {{ $user->salary_ref_number }}
+
+ {{ $user->first_name }} {{$user->last_name}}
+ {{ $user->email }}
+
+ @forelse($user->jcp as $jcp)
+ {{ $jcp->position_title }}
+ @empty
+ No active JCP...
+ @endforelse
+
+ {{ $user->competency_rating }}
+
+
+
+
+
+ ...
+
+
+
+
+
+
+ Edit
+
+
+
+
+ Delete
+
+
+
+
+
+
+ {{--
--}}
+
+
+
+
+
+
+
+
+
+
+ @endforeach
+
+
+
+
+
+
+ {{ $users->links() }}
+
+
+
+
diff --git a/resources/views/livewire/system/qualifications/qualifications-table.blade.php b/resources/views/livewire/system/qualifications/qualifications-table.blade.php
new file mode 100644
index 0000000..820eed2
--- /dev/null
+++ b/resources/views/livewire/system/qualifications/qualifications-table.blade.php
@@ -0,0 +1,88 @@
+
+ {{-- Stop trying to control. --}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Qualification
+
+
+
+
+
+
+
+
+
+
+
+ qualification Title
+ Actions
+
+
+
+
+
+
+ @foreach ($qualifications as $qualification)
+
+
+ {{ $qualification->qualification_title }}
+
+ {{-- {{ $skill->skill_description }} --}}
+
+
+
+
+
+ ...
+
+
+
+
+
+
+ Edit
+
+
+
+
+ Delete
+
+
+
+
+
+
+ {{--
--}}
+
+
+
+
+
+
+
+
+
+
+ @endforeach
+
+
+
+
+
+
+ {{ $qualifications->links() }}
+
+
+
+
diff --git a/resources/views/livewire/system/skills/skill-table.blade.php b/resources/views/livewire/system/skills/skill-table.blade.php
index fcf322f..dcefb75 100644
--- a/resources/views/livewire/system/skills/skill-table.blade.php
+++ b/resources/views/livewire/system/skills/skill-table.blade.php
@@ -42,6 +42,15 @@
+
+
+
+
+ Add skill
+
+
+
+
@@ -55,7 +64,6 @@
Actions
-
@@ -65,7 +73,7 @@
{{ $skill->skill_title }}
- {{ $skill->skill_description }}
+ {{ Str::limit($skill->skill_description, 50, $end='...') }}
diff --git a/resources/views/navigation-menu.blade.php b/resources/views/navigation-menu.blade.php
index 1823cd4..fbbc1dd 100644
--- a/resources/views/navigation-menu.blade.php
+++ b/resources/views/navigation-menu.blade.php
@@ -41,7 +41,7 @@
Qualifications
-
+
Organisation
diff --git a/routes/web.php b/routes/web.php
index 5d852c9..5293c82 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -5,6 +5,7 @@
use App\Http\Controllers\System\JCPController;
use App\Http\Controllers\System\QualificationController;
use App\Http\Controllers\System\SkillController;
+use App\Livewire\System\Org\OrgTable;
use Illuminate\Support\Facades\Route;
use Laravel\Jetstream\Rules\Role;
@@ -33,4 +34,5 @@
Route::resource('/jcp', JCPController::class);
Route::resource('/skills', SkillController::class);
Route::resource('/qualifications', QualificationController::class);
+ Route::get('/org', [OrgTable::class, 'index'])->name('org.index');
});
diff --git a/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php b/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php
new file mode 100644
index 0000000..2ebc0b3
--- /dev/null
+++ b/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php
@@ -0,0 +1,199 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+getIterator() : [])); ?>
+withName('gmdi-add-o'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'w-6 h-6']); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+ Employee
+
+
+
+
+
+
+
+
+
+
+
+ Salary Ref:
+ Name
+ Email
+ Job Title
+ Skill Points
+ Actions
+
+
+
+
+
+
+
+
+
+ addLoop($__currentLoopData); foreach($__currentLoopData as $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
+
+
+ salary_ref_number); ?>
+
+
+ first_name); ?> last_name); ?>
+ email); ?>
+
+ jcp; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $jcp): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
+ position_title); ?>
+
+ popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
+
+
+getIterator() : [])); ?>
+withName('iconoir-warning-triangle'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'mr-3']); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+ No active JCP...
+
+
+ competency_rating); ?>
+
+
+
+
+ 'components.dropdown','data' => ['align' => 'center','width' => '48']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('dropdown'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['align' => 'center','width' => '48']); ?>
+ slot('trigger', null, []); ?>
+
+ ...
+
+
+ endSlot(); ?>
+ slot('content', null, []); ?>
+
+
+
+ 'components.dropdown-link','data' => ['href' => '#']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('dropdown-link'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['href' => '#']); ?>
+ Edit
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 'components.dropdown-link','data' => ['class' => 'text-red-900 hover:bg-red-200/50']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('dropdown-link'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'text-red-900 hover:bg-red-200/50']); ?>
+ Delete
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ endSlot(); ?>
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ popLoop(); $loop = $__env->getLastLoop(); ?>
+
+
+
+
+
+
+ links()); ?>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/1fb430c78c65d04b12978071c33ca4ea.php b/storage/framework/views/1fb430c78c65d04b12978071c33ca4ea.php
new file mode 100644
index 0000000..e8d901e
--- /dev/null
+++ b/storage/framework/views/1fb430c78c65d04b12978071c33ca4ea.php
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/252cf8a3a85b22cfea8a36c5d63767a2.blade.php b/storage/framework/views/252cf8a3a85b22cfea8a36c5d63767a2.blade.php
new file mode 100644
index 0000000..9274194
--- /dev/null
+++ b/storage/framework/views/252cf8a3a85b22cfea8a36c5d63767a2.blade.php
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php b/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php
index 006ec08..475e86f 100644
--- a/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php
+++ b/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php
@@ -11,12 +11,40 @@
withAttributes([]); ?>
slot('header', null, []); ?>
+
+
+
+
+
+
+
+
+
+
endSlot(); ?>
+
+ mount($__name, $__params, 'lw-1448711404-0', $__slots ?? [], get_defined_vars());
+
+echo $__html;
+
+unset($__html);
+unset($__name);
+unset($__params);
+unset($__split);
+if (isset($__slots)) unset($__slots);
+?>
+
renderComponent(); ?>
diff --git a/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php b/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php
new file mode 100644
index 0000000..6a2ed55
--- /dev/null
+++ b/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php
@@ -0,0 +1,52 @@
+
+
+
+getIterator() : [])); ?>
+withName('app-layout'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+ slot('header', null, []); ?>
+
+
+
+
+ endSlot(); ?>
+
+
+ mount($__name, $__params, 'lw-3363805626-0', $__slots ?? [], get_defined_vars());
+
+echo $__html;
+
+unset($__html);
+unset($__name);
+unset($__params);
+unset($__split);
+if (isset($__slots)) unset($__slots);
+?>
+
+
+
+
+
+
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/424d8b44b4754620c77929b3fe3a51c4.php b/storage/framework/views/424d8b44b4754620c77929b3fe3a51c4.php
new file mode 100644
index 0000000..8a7778b
--- /dev/null
+++ b/storage/framework/views/424d8b44b4754620c77929b3fe3a51c4.php
@@ -0,0 +1,2 @@
+ merge(['class' => 'rounded dark:bg-gray-900 border-gray-300 dark:border-gray-700 text-indigo-600 shadow-sm focus:ring-indigo-500 dark:focus:ring-indigo-600 dark:focus:ring-offset-gray-800']); ?>>
+
\ No newline at end of file
diff --git a/storage/framework/views/4a2f250bfd0e43a19a1b8c7a2ccac691.php b/storage/framework/views/4a2f250bfd0e43a19a1b8c7a2ccac691.php
index b329e5a..f533074 100644
--- a/storage/framework/views/4a2f250bfd0e43a19a1b8c7a2ccac691.php
+++ b/storage/framework/views/4a2f250bfd0e43a19a1b8c7a2ccac691.php
@@ -17,6 +17,24 @@
endSlot(); ?>
+
+ mount($__name, $__params, 'lw-13048783-0', $__slots ?? [], get_defined_vars());
+
+echo $__html;
+
+unset($__html);
+unset($__name);
+unset($__params);
+unset($__split);
+if (isset($__slots)) unset($__slots);
+?>
+
renderComponent(); ?>
diff --git a/storage/framework/views/500b4b0a9a89e34db849a6e8b6f65f52.blade.php b/storage/framework/views/500b4b0a9a89e34db849a6e8b6f65f52.blade.php
new file mode 100644
index 0000000..dbd570c
--- /dev/null
+++ b/storage/framework/views/500b4b0a9a89e34db849a6e8b6f65f52.blade.php
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/storage/framework/views/57cb537ed0fbb7b6eb25683de78db905.php b/storage/framework/views/57cb537ed0fbb7b6eb25683de78db905.php
new file mode 100644
index 0000000..27cdcd6
--- /dev/null
+++ b/storage/framework/views/57cb537ed0fbb7b6eb25683de78db905.php
@@ -0,0 +1,5 @@
+merge(['type' => 'submit', 'class' => 'inline-flex items-center px-4 py-2 bg-gray-800 dark:bg-gray-200 border border-transparent rounded-md font-semibold text-xs text-white dark:text-gray-800 uppercase tracking-widest hover:bg-gray-700 dark:hover:bg-white focus:bg-gray-700 dark:focus:bg-white active:bg-gray-900 dark:active:bg-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 dark:focus:ring-offset-gray-800 transition ease-in-out duration-150'])); ?>>
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/58596e2f9a27846b699b9f2289589b5b.blade.php b/storage/framework/views/58596e2f9a27846b699b9f2289589b5b.blade.php
new file mode 100644
index 0000000..247a88e
--- /dev/null
+++ b/storage/framework/views/58596e2f9a27846b699b9f2289589b5b.blade.php
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/storage/framework/views/61fb610abd610eb2cd8a0b9a70bab458.php b/storage/framework/views/61fb610abd610eb2cd8a0b9a70bab458.php
index aa2e16e..f1b3475 100644
--- a/storage/framework/views/61fb610abd610eb2cd8a0b9a70bab458.php
+++ b/storage/framework/views/61fb610abd610eb2cd8a0b9a70bab458.php
@@ -117,6 +117,35 @@
+
+
+
+
+
+getIterator() : [])); ?>
+withName('gmdi-add-o'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'w-6 h-6']); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+ Add skill
+
+
+
+
+
@@ -140,7 +169,11 @@
skill_title); ?>
+
skill_description); ?>
+
+ skill_description, 50, $end='...')); ?>
+
diff --git a/storage/framework/views/664ac45a0383d51517eb943aa2919183.php b/storage/framework/views/664ac45a0383d51517eb943aa2919183.php
new file mode 100644
index 0000000..86ad653
--- /dev/null
+++ b/storage/framework/views/664ac45a0383d51517eb943aa2919183.php
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/storage/framework/views/7341021a3035689d67dbdde964ed598a.php b/storage/framework/views/7341021a3035689d67dbdde964ed598a.php
index 332119e..9d76e79 100644
--- a/storage/framework/views/7341021a3035689d67dbdde964ed598a.php
+++ b/storage/framework/views/7341021a3035689d67dbdde964ed598a.php
@@ -40,14 +40,22 @@
+
'components.dropdown-link','data' => ['href' => '#']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+
+ 'components.dropdown-link','data' => ['href' => ''.e(route('assessments.index')).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+
withName('dropdown-link'); ?>
shouldRender()): ?>
startComponent($component->resolveView(), $component->data()); ?>
getConstructor()): ?>
except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
withAttributes(['href' => '#']); ?>
+
+withAttributes(['href' => ''.e(route('assessments.index')).'']); ?>
+
Assessments
renderComponent(); ?>
@@ -124,14 +132,22 @@
+
'components.dropdown-link','data' => ['href' => '#']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+
+ 'components.dropdown-link','data' => ['href' => ''.e(route('org.index')).'']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+
withName('dropdown-link'); ?>
shouldRender()): ?>
startComponent($component->resolveView(), $component->data()); ?>
getConstructor()): ?>
except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
withAttributes(['href' => '#']); ?>
+
+withAttributes(['href' => ''.e(route('org.index')).'']); ?>
+
Organisation
renderComponent(); ?>
diff --git a/storage/framework/views/7441753ea411fcf7bdbbebaf590ed815.php b/storage/framework/views/7441753ea411fcf7bdbbebaf590ed815.php
new file mode 100644
index 0000000..ae156e3
--- /dev/null
+++ b/storage/framework/views/7441753ea411fcf7bdbbebaf590ed815.php
@@ -0,0 +1,102 @@
+
+
+getIterator() : [])); ?>
+withName('app-layout'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+ slot('header', null, []); ?>
+
+
+
+
+ endSlot(); ?>
+
+
+
+
+ addLoop($__currentLoopData); foreach($__currentLoopData as $a): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
+
+
+
+
+
+
+getIterator() : [])); ?>
+withName('iconoir-podcast'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'w-6 mr-3']); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+ Telecom Skills Audit
+
+
+
+
+
+
+ popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
+
+
+
+
+
+
+
+
+
+ You are not currently assigned to any assessments.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/766911db3fcc54b1010d64871c299336.php b/storage/framework/views/766911db3fcc54b1010d64871c299336.php
new file mode 100644
index 0000000..af8a7dc
--- /dev/null
+++ b/storage/framework/views/766911db3fcc54b1010d64871c299336.php
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/80a985fb5771e00b1d66efa320c3b3a5.php b/storage/framework/views/80a985fb5771e00b1d66efa320c3b3a5.php
new file mode 100644
index 0000000..6e53a9a
--- /dev/null
+++ b/storage/framework/views/80a985fb5771e00b1d66efa320c3b3a5.php
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/storage/framework/views/87a8f88578b96cf168daac7b111e0831.php b/storage/framework/views/87a8f88578b96cf168daac7b111e0831.php
new file mode 100644
index 0000000..9a36f11
--- /dev/null
+++ b/storage/framework/views/87a8f88578b96cf168daac7b111e0831.php
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/90296acbddce66f64fd39be4f74ce452.php b/storage/framework/views/90296acbddce66f64fd39be4f74ce452.php
new file mode 100644
index 0000000..67b72d3
--- /dev/null
+++ b/storage/framework/views/90296acbddce66f64fd39be4f74ce452.php
@@ -0,0 +1,191 @@
+
+
+getIterator() : [])); ?>
+withName('app-layout'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+
+
+
+
+
+
+
+
Overview
+
+
+ assessment_title); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+ competency_rating); ?>
+
+
+
+
+
+
+ isNotEmpty()): ?>
+
+
+
Job Competency Profile
+ Details
+
+
+ Employee Name:
+ first_name . ' ' . $user->last_name); ?>
+
+
+
+ Job title: position_title); ?>
+
+
+
+ Job Grade: job_grade); ?>
+
+
+
+
+ Job Purpose: job_purpose); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Your Job Competency Profile is not complete. Please talk to your supervisor.
+
+
+
+
+
+
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/93065f89689f3311f6f32306ee3674d8.php b/storage/framework/views/93065f89689f3311f6f32306ee3674d8.php
new file mode 100644
index 0000000..564859e
--- /dev/null
+++ b/storage/framework/views/93065f89689f3311f6f32306ee3674d8.php
@@ -0,0 +1,16 @@
+
+onlyProps(['disabled' => false]) as $__key => $__value) {
+ $$__key = $$__key ?? $__value;
+} ?>
+exceptProps(['disabled' => false]); ?>
+ false]), 'is_string', ARRAY_FILTER_USE_KEY) as $__key => $__value) {
+ $$__key = $$__key ?? $__value;
+} ?>
+
+ $__value) {
+ if (array_key_exists($__key, $__defined_vars)) unset($$__key);
+} ?>
+
+
+
merge(['class' => 'border-gray-300 dark:border-gray-700 dark:bg-gray-900 dark:text-gray-300 focus:border-indigo-500 dark:focus:border-indigo-600 focus:ring-indigo-500 dark:focus:ring-indigo-600 rounded-md shadow-sm']); ?>>
+
\ No newline at end of file
diff --git a/storage/framework/views/ac5b905d0ad2b14f74d0f87456b8b914.php b/storage/framework/views/ac5b905d0ad2b14f74d0f87456b8b914.php
new file mode 100644
index 0000000..4ca523f
--- /dev/null
+++ b/storage/framework/views/ac5b905d0ad2b14f74d0f87456b8b914.php
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/storage/framework/views/b049eb732f9b177767e28092bf4a9e42.php b/storage/framework/views/b049eb732f9b177767e28092bf4a9e42.php
new file mode 100644
index 0000000..30e94b7
--- /dev/null
+++ b/storage/framework/views/b049eb732f9b177767e28092bf4a9e42.php
@@ -0,0 +1,164 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+getIterator() : [])); ?>
+withName('gmdi-add-o'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'w-6 h-6']); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+ Qualification
+
+
+
+
+
+
+
+
+
+
+
+ qualification Title
+ Actions
+
+
+
+
+
+
+ addLoop($__currentLoopData); foreach($__currentLoopData as $qualification): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
+
+
+ qualification_title); ?>
+
+
+
+
+
+
+
+ 'components.dropdown','data' => ['align' => 'center','width' => '48']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('dropdown'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['align' => 'center','width' => '48']); ?>
+ slot('trigger', null, []); ?>
+
+ ...
+
+
+ endSlot(); ?>
+ slot('content', null, []); ?>
+
+
+
+ 'components.dropdown-link','data' => ['href' => '#']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('dropdown-link'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['href' => '#']); ?>
+ Edit
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 'components.dropdown-link','data' => ['class' => 'text-red-900 hover:bg-red-200/50']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('dropdown-link'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'text-red-900 hover:bg-red-200/50']); ?>
+ Delete
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ endSlot(); ?>
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ popLoop(); $loop = $__env->getLastLoop(); ?>
+
+
+
+
+
+
+ links()); ?>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/b13f99da761f6baecaf236cc1c832aa5.php b/storage/framework/views/b13f99da761f6baecaf236cc1c832aa5.php
new file mode 100644
index 0000000..ab9c799
--- /dev/null
+++ b/storage/framework/views/b13f99da761f6baecaf236cc1c832aa5.php
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/b579c6a2257b0d7b6a8affc5061f3eaf.blade.php b/storage/framework/views/b579c6a2257b0d7b6a8affc5061f3eaf.blade.php
new file mode 100644
index 0000000..fe82abc
--- /dev/null
+++ b/storage/framework/views/b579c6a2257b0d7b6a8affc5061f3eaf.blade.php
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/storage/framework/views/c95c8d63b786902eb86388a54202d99c.php b/storage/framework/views/c95c8d63b786902eb86388a54202d99c.php
new file mode 100644
index 0000000..1192863
--- /dev/null
+++ b/storage/framework/views/c95c8d63b786902eb86388a54202d99c.php
@@ -0,0 +1,19 @@
+
+onlyProps(['value']) as $__key => $__value) {
+ $$__key = $$__key ?? $__value;
+} ?>
+exceptProps(['value']); ?>
+ $__value) {
+ $$__key = $$__key ?? $__value;
+} ?>
+
+ $__value) {
+ if (array_key_exists($__key, $__defined_vars)) unset($$__key);
+} ?>
+
+
+merge(['class' => 'block font-medium text-sm text-gray-700 dark:text-gray-300'])); ?>>
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/cbf22f515f38dbd6b9d9f71e4920f998.php b/storage/framework/views/cbf22f515f38dbd6b9d9f71e4920f998.php
new file mode 100644
index 0000000..c34a422
--- /dev/null
+++ b/storage/framework/views/cbf22f515f38dbd6b9d9f71e4920f998.php
@@ -0,0 +1,246 @@
+
+
+getIterator() : [])); ?>
+withName('guest-layout'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+
+
+ 'components.authentication-card','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('authentication-card'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+ slot('logo', null, []); ?>
+
+
+ 'components.authentication-card-logo','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('authentication-card-logo'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+ endSlot(); ?>
+
+
+
+ 'components.validation-errors','data' => ['class' => 'mb-4']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('validation-errors'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'mb-4']); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+ has($__sessionArgs[0])) :
+if (isset($value)) { $__sessionPrevious[] = $value; }
+$value = session()->get($__sessionArgs[0]); ?>
+
+
+
+
+
+
+
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/e5cf3a4e29bc8898fe00b228874d995e.php b/storage/framework/views/e5cf3a4e29bc8898fe00b228874d995e.php
new file mode 100644
index 0000000..1076bbf
--- /dev/null
+++ b/storage/framework/views/e5cf3a4e29bc8898fe00b228874d995e.php
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/storage/framework/views/ecc271ad3f9e9923ec05322103ac7475.blade.php b/storage/framework/views/ecc271ad3f9e9923ec05322103ac7475.blade.php
new file mode 100644
index 0000000..df342c7
--- /dev/null
+++ b/storage/framework/views/ecc271ad3f9e9923ec05322103ac7475.blade.php
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/ef7ade4035e6c5dddddf5b82c71a710e.php b/storage/framework/views/ef7ade4035e6c5dddddf5b82c71a710e.php
index 71dc41f..547061d 100644
--- a/storage/framework/views/ef7ade4035e6c5dddddf5b82c71a710e.php
+++ b/storage/framework/views/ef7ade4035e6c5dddddf5b82c71a710e.php
@@ -35,7 +35,11 @@
+
+ class="z-100 bg-gradient-to-br from-fuchsia-950 to-slate-800 lg:fixed sm:fixed text-gray-900 w-56 px-2 py-4 absolute inset-y-0 left-0 top-20 bottom-0 transform md:translate-x-0 overflow-y-auto transition ease-in-out duration-200 shadow-lg">
+
@@ -164,7 +168,11 @@ class="z-10 bg-gradient-to-br from-fuchsia-950 to-slate-800 lg:fixed sm:fixed te
getConstructor()): ?>
except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
withAttributes(['href' => ''.e(route('user-assessment',['user' => Crypt::encrypt(Auth::user()->id)])).'','active' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(request()->routeIs('user-assessment')),'icon' => 'iconoir-stackoverflow']); ?>
+
+withAttributes(['href' => ''.e(route('user-assessment',['user' => Crypt::encrypt(Auth::user()->id)])).'','active' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(request()->routeIs('user-assessment')),'icon' => 'iconoir-post']); ?>
+
My Assessments
renderComponent(); ?>
diff --git a/storage/framework/views/ef99a8b8595869221dcb41936d5ecf74.php b/storage/framework/views/ef99a8b8595869221dcb41936d5ecf74.php
new file mode 100644
index 0000000..556e240
--- /dev/null
+++ b/storage/framework/views/ef99a8b8595869221dcb41936d5ecf74.php
@@ -0,0 +1,12 @@
+any()): ?>
+
>
+
+
+
+ all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
+
+ popLoop(); $loop = $__env->getLastLoop(); ?>
+
+
+
+
\ No newline at end of file
diff --git a/storage/framework/views/f1b7c3fcd0a879ff34e0f31ead669540.php b/storage/framework/views/f1b7c3fcd0a879ff34e0f31ead669540.php
new file mode 100644
index 0000000..7178800
--- /dev/null
+++ b/storage/framework/views/f1b7c3fcd0a879ff34e0f31ead669540.php
@@ -0,0 +1,387 @@
+
+
+getIterator() : [])); ?>
+withName('guest-layout'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+
+
+ 'components.authentication-card','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('authentication-card'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+ slot('logo', null, []); ?>
+
+
+ 'components.authentication-card-logo','data' => []] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('authentication-card-logo'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes([]); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+ endSlot(); ?>
+
+
+
+ 'components.validation-errors','data' => ['class' => 'mb-4']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?>
+withName('validation-errors'); ?>
+shouldRender()): ?>
+startComponent($component->resolveView(), $component->data()); ?>
+getConstructor()): ?>
+except(collect($constructor->getParameters())->map->getName()->all()); ?>
+
+withAttributes(['class' => 'mb-4']); ?>
+renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
+
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+ renderComponent(); ?>
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/storage/logs/laravel.log b/storage/logs/laravel.log
index d8963f3..6c403d2 100644
--- a/storage/logs/laravel.log
+++ b/storage/logs/laravel.log
@@ -19974,3 +19974,32133 @@ Stack trace:
#68 /home/wings/Telecom/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
#69 {main}
"}
+[2024-03-26 14:32:42] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:42] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:42] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:43] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:43] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:45] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:45] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:46] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:47] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:47] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:47] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:48] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:48] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:48] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:48] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:50] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:50] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:52] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:52] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:52] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:53] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:53] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:53] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:53] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:55] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:55] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:56] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:57] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:57] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:57] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:58] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:58] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:32:58] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:32:58] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:00] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:00] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:01] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:02] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:02] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:02] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:03] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:03] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:03] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:03] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:05] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:05] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:07] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:07] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:07] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:08] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:08] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:08] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:08] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:10] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:10] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:11] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:12] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:12] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:13] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:13] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:13] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:13] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:16] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:36] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:36] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:41] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:41] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:46] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:46] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:47] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:56] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:33:56] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:33:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:01] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:01] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:01] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:01] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:11] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:11] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:16] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:16] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:36] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:36] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:41] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:41] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:46] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:46] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:56] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:34:56] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:34:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:01] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:01] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:01] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:01] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:11] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:11] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:16] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:16] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:27] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:36] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:36] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:41] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:41] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:46] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:46] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:56] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:35:56] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:35:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:01] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:01] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:01] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:02] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:11] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:11] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:16] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:16] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:26] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:27] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(186): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): Illuminate\\Foundation\\Http\\Kernel->bootstrap()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#29 {main}
+"}
+[2024-03-26 14:36:30] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(186): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): Illuminate\\Foundation\\Http\\Kernel->bootstrap()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#29 {main}
+"}
+[2024-03-26 14:36:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:31] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:32] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:36] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:43] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:43] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:44] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#27 {main}
+"}
+[2024-03-26 14:36:45] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:48] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:48] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:49] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:49] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:50] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:53] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:53] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:54] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:54] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:55] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#27 {main}
+"}
+[2024-03-26 14:36:55] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:58] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:58] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:36:59] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:36:59] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:00] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:01] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:03] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:03] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:05] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:06] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:08] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:08] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:09] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:10] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:10] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:13] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:13] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:14] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:15] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:15] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:18] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:18] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:20] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:20] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:21] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:23] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:23] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:24] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:25] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:25] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:28] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:28] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:29] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:30] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:30] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:33] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#27 {main}
+"}
+[2024-03-26 14:37:33] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:33] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:34] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:35] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:35] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:38] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:38] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:39] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:40] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:40] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:43] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:43] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:44] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:45] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:45] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:48] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:48] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:50] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:50] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:51] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:53] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:53] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:54] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:55] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:55] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:37:58] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:37:58] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:00] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:00] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:00] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:01] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:03] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:03] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:04] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:05] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:05] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:05] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:06] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:08] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:08] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:10] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:10] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:10] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(186): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(170): Illuminate\\Foundation\\Http\\Kernel->bootstrap()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#29 {main}
+"}
+[2024-03-26 14:38:10] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:11] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:13] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:13] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:15] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:15] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:15] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:16] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:18] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:18] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:20] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:20] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:20] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:21] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:23] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:23] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:24] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:25] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:25] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:26] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:28] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:28] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:29] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#27 {main}
+"}
+[2024-03-26 14:38:30] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:30] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:30] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:31] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:33] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:33] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:35] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:35] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:35] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:36] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:38] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:38] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:39] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:40] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:40] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:41] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:43] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:43] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:44] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:45] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:45] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:46] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:48] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:48] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:49] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:50] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:50] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:51] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:53] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:53] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:55] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:55] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-26 14:38:55] local.ERROR: Please provide a valid cache path. {"exception":"[object] (InvalidArgumentException(code: 0): Please provide a valid cache path. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(98): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(27): BladeUI\\Icons\\BladeIconsServiceProvider->bootDirectives()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): BladeUI\\Icons\\BladeIconsServiceProvider->boot()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1099): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1080): Illuminate\\Foundation\\Application->bootProvider()
+#19 [internal function]: Illuminate\\Foundation\\Application->Illuminate\\Foundation\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1079): array_walk()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/BootProviders.php(17): Illuminate\\Foundation\\Application->boot()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(309): Illuminate\\Foundation\\Bootstrap\\BootProviders->bootstrap()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(470): Illuminate\\Foundation\\Application->bootstrapWith()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(194): Illuminate\\Foundation\\Console\\Kernel->bootstrap()
+#25 Command line code(1): Illuminate\\Foundation\\Console\\Kernel->handle()
+#26 {main}
+"}
+[2024-03-26 14:38:56] local.ERROR: Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\View\Compilers\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\View\ViewServiceProvider->Illuminate\View\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\Container\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\Foundation\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\Container\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\Support\Facades\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\Support\Facades\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\Support\Facades\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\Icons\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\Icons\BladeIconsServiceProvider->BladeUI\Icons\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\Container\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\Container\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\Container\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\Container\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\Foundation\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\Container\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\Foundation\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown {"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Uncaught InvalidArgumentException: Please provide a valid cache path. in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67
+Stack trace:
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/ViewServiceProvider.php(96): Illuminate\\View\\Compilers\\Compiler->__construct()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(900): Illuminate\\View\\ViewServiceProvider->Illuminate\\View\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(787): Illuminate\\Container\\Container->build()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1446): Illuminate\\Foundation\\Application->make()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(237): Illuminate\\Container\\Container->offsetGet()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(208): Illuminate\\Support\\Facades\\Facade::resolveFacadeInstance()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php(351): Illuminate\\Support\\Facades\\Facade::getFacadeRoot()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/Factory.php(108): Illuminate\\Support\\Facades\\Facade::__callStatic()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/blade-ui-kit/blade-icons/src/BladeIconsServiceProvider.php(66): BladeUI\\Icons\\Factory->registerComponents()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1294): BladeUI\\Icons\\BladeIconsServiceProvider->BladeUI\\Icons\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1258): Illuminate\\Container\\Container->fireCallbackArray()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(1244): Illuminate\\Container\\Container->fireAfterResolvingCallbacks()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(805): Illuminate\\Container\\Container->fireResolvingCallbacks()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1026): Illuminate\\Container\\Container->resolve()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(723): Illuminate\\Foundation\\Application->resolve()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1011): Illuminate\\Container\\Container->make()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(120): Illuminate\\Foundation\\Application->make()
+#20 Command line code(1): app()
+#21 {main}
+ thrown at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/Compiler.php:67)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-27 08:02:17] local.ERROR: Too few arguments to function App\Models\Audit\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (ArgumentCountError(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+"}
+[2024-03-27 08:02:18] local.ERROR: Too few arguments to function App\Models\Audit\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (ArgumentCountError(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+"}
+[2024-03-27 08:02:19] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:02:19] local.ERROR: Too few arguments to function App\Models\Audit\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (ArgumentCountError(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+"}
+[2024-03-27 08:02:19] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:02:33] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:02:33] local.ERROR: Too few arguments to function App\Models\Audit\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (ArgumentCountError(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+"}
+[2024-03-27 08:02:33] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:02:36] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:02:36] local.ERROR: Too few arguments to function App\Models\Audit\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (ArgumentCountError(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+"}
+[2024-03-27 08:02:36] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:02:40] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:02:40] local.ERROR: Too few arguments to function App\Models\Audit\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (ArgumentCountError(code: 0): Too few arguments to function App\\Models\\Audit\\qualification::scopeSearch(), 1 passed in /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php on line 1631 and exactly 2 expected at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Models/Audit/qualification.php:25)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1631): App\\Models\\Audit\\qualification->scopeSearch()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1416): Illuminate\\Database\\Eloquent\\Model->callNamedScope()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1397): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1415): Illuminate\\Database\\Eloquent\\Builder->callScope()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1967): Illuminate\\Database\\Eloquent\\Builder->callNamedScope()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(23): Illuminate\\Database\\Eloquent\\Builder->__call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php(12): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Qualifications\\QualificationsTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+"}
+[2024-03-27 08:02:40] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:04:27] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:04:27] local.ERROR: syntax error, unexpected token "=>" {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): syntax error, unexpected token \"=>\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php:13)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/composer/ClassLoader.php(433): Composer\\Autoload\\{closure}()
+#1 [internal function]: Composer\\Autoload\\ClassLoader->loadClass()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(97): class_exists()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(25): Livewire\\Mechanisms\\ComponentRegistry->getNameAndClass()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(57): Livewire\\Mechanisms\\ComponentRegistry->new()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(41): Livewire\\LivewireManager->new()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#71 {main}
+
+[previous exception] [object] (ParseError(code: 0): syntax error, unexpected token \"=>\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Qualifications/QualificationsTable.php:13)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/composer/ClassLoader.php(433): Composer\\Autoload\\{closure}()
+#1 [internal function]: Composer\\Autoload\\ClassLoader->loadClass()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(97): class_exists()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(25): Livewire\\Mechanisms\\ComponentRegistry->getNameAndClass()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(57): Livewire\\Mechanisms\\ComponentRegistry->new()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(41): Livewire\\LivewireManager->new()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#71 {main}
+"}
+[2024-03-27 08:04:27] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:09:20] local.ERROR: Unable to call component method. Public method [create] not found on component {"userId":25,"exception":"[object] (Livewire\\Exceptions\\MethodNotFoundException(code: 0): Unable to call component method. Public method [create] not found on component at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php:463)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(99): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->callMethods()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(96): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->update()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleRequests/HandleRequests.php(89): Livewire\\LivewireManager->update()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): Livewire\\Mechanisms\\HandleRequests\\HandleRequests->handleUpdate()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#48 {main}
+"}
+[2024-03-27 08:19:03] local.ERROR: Unable to locate a class or view for component [gmdi-add-o]. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Unable to locate a class or view for component [gmdi-add-o]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (InvalidArgumentException(code: 0): Unable to locate a class or view for component [gmdi-add-o]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+"}
+[2024-03-27 08:19:07] local.ERROR: Unable to locate a class or view for component [gmdi-add-o]. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Unable to locate a class or view for component [gmdi-add-o]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (InvalidArgumentException(code: 0): Unable to locate a class or view for component [gmdi-add-o]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+"}
+[2024-03-27 08:24:42] local.ERROR: syntax error, unexpected end of file, expecting "elseif" or "else" or "endif" {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php:82)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+
+[previous exception] [object] (ParseError(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/b049eb732f9b177767e28092bf4a9e42.php:171)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+"}
+[2024-03-27 08:24:47] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:24:47] local.ERROR: syntax error, unexpected end of file, expecting "elseif" or "else" or "endif" {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php:82)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+
+[previous exception] [object] (ParseError(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/b049eb732f9b177767e28092bf4a9e42.php:171)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+"}
+[2024-03-27 08:24:47] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:25:23] local.ERROR: syntax error, unexpected end of file, expecting "elseif" or "else" or "endif" {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php:82)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+
+[previous exception] [object] (ParseError(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/b049eb732f9b177767e28092bf4a9e42.php:171)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+"}
+[2024-03-27 08:25:28] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:25:28] local.ERROR: syntax error, unexpected end of file, expecting "elseif" or "else" or "endif" {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php:82)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+
+[previous exception] [object] (ParseError(code: 0): syntax error, unexpected end of file, expecting \"elseif\" or \"else\" or \"endif\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/b049eb732f9b177767e28092bf4a9e42.php:171)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Qualifications\\QualificationsTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#75 {main}
+"}
+[2024-03-27 08:25:28] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:27:33] local.ERROR: Unable to locate a class or view for component [countdown]. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Unable to locate a class or view for component [countdown]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (InvalidArgumentException(code: 0): Unable to locate a class or view for component [countdown]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+"}
+[2024-03-27 08:27:44] local.ERROR: Unable to locate a class or view for component [countdown]. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Unable to locate a class or view for component [countdown]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (InvalidArgumentException(code: 0): Unable to locate a class or view for component [countdown]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+"}
+[2024-03-27 08:27:54] local.ERROR: Unable to locate a class or view for component [countdown]. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/qualifications/qualifications-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Unable to locate a class or view for component [countdown]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/qualifications/index.blade.php(10): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (InvalidArgumentException(code: 0): Unable to locate a class or view for component [countdown]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php:311)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(235): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(220): Illuminate\\View\\Compilers\\ComponentTagCompiler->componentString()
+#2 [internal function]: Illuminate\\View\\Compilers\\ComponentTagCompiler->Illuminate\\View\\Compilers\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(215): preg_replace_callback()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(89): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileSelfClosingTags()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/ComponentTagCompiler.php(76): Illuminate\\View\\Compilers\\ComponentTagCompiler->compileTags()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(438): Illuminate\\View\\Compilers\\ComponentTagCompiler->compile()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(270): Illuminate\\View\\Compilers\\BladeCompiler->compileComponentTags()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(184): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(65): Illuminate\\View\\Compilers\\BladeCompiler->compile()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/25b474a0f26957d618e971858ee16bc2.php(26): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+"}
+[2024-03-27 08:51:05] local.ERROR: Undefined property: Illuminate\Database\Eloquent\Relations\HasMany::$job_title {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined property: Illuminate\\Database\\Eloquent\\Relations\\HasMany::$job_title at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php:48)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined property: Illuminate\\Database\\Eloquent\\Relations\\HasMany::$job_title at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php:68)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 08:51:45] local.ERROR: Undefined property: Illuminate\Database\Eloquent\Relations\HasMany::$position_title {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined property: Illuminate\\Database\\Eloquent\\Relations\\HasMany::$position_title at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php:48)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined property: Illuminate\\Database\\Eloquent\\Relations\\HasMany::$position_title at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php:68)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 08:51:56] local.ERROR: Property [position_title] does not exist on this collection instance. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (Exception(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 08:52:27] local.ERROR: Undefined array key 0 {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 08:52:29] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:52:29] local.ERROR: Undefined array key 0 {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 08:52:29] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:52:37] local.ERROR: Undefined array key 1 {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key 1 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key 1 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 08:52:39] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:52:39] local.ERROR: Undefined array key 1 {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key 1 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key 1 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 08:52:39] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:52:55] local.ERROR: Undefined array key "position_title" {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key \"position_title\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key \"position_title\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 08:52:57] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:52:57] local.ERROR: Undefined array key "position_title" {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key \"position_title\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key \"position_title\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 08:52:57] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:53:07] local.ERROR: htmlspecialchars(): Argument #1 ($string) must be of type string, Illuminate\Database\Eloquent\Relations\HasMany given {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): htmlspecialchars(): Argument #1 ($string) must be of type string, Illuminate\\Database\\Eloquent\\Relations\\HasMany given at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php:126)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php(126): htmlspecialchars()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): e()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (TypeError(code: 0): htmlspecialchars(): Argument #1 ($string) must be of type string, Illuminate\\Database\\Eloquent\\Relations\\HasMany given at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php:126)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php(126): htmlspecialchars()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): e()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 08:53:09] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 08:53:09] local.ERROR: htmlspecialchars(): Argument #1 ($string) must be of type string, Illuminate\Database\Eloquent\Relations\HasMany given {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): htmlspecialchars(): Argument #1 ($string) must be of type string, Illuminate\\Database\\Eloquent\\Relations\\HasMany given at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php:126)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php(126): htmlspecialchars()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): e()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (TypeError(code: 0): htmlspecialchars(): Argument #1 ($string) must be of type string, Illuminate\\Database\\Eloquent\\Relations\\HasMany given at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php:126)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/helpers.php(126): htmlspecialchars()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): e()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 08:53:09] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:03:04] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:03:04] local.ERROR: Undefined property: stdClass::$position_title {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined property: stdClass::$position_title at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3209)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3209): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3171): Illuminate\\Database\\Query\\Builder->pluckFromObjectColumn()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(888): Illuminate\\Database\\Query\\Builder->pluck()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->pluck()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined property: stdClass::$position_title at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3209)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3209): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3171): Illuminate\\Database\\Query\\Builder->pluckFromObjectColumn()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(888): Illuminate\\Database\\Query\\Builder->pluck()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->pluck()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 09:03:04] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:03:46] local.ERROR: Property [position_title] does not exist on this collection instance. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (Exception(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 09:03:48] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:03:48] local.ERROR: Property [position_title] does not exist on this collection instance. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (Exception(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 09:03:48] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:03:56] local.ERROR: Cannot use [] for reading {"userId":25,"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Cannot use [] for reading at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php:68)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-27 09:03:58] local.ERROR: Cannot use [] for reading {"userId":25,"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Cannot use [] for reading at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php:68)
+[stacktrace]
+#0 {main}
+"}
+[2024-03-27 09:04:07] local.ERROR: Undefined array key 0 {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 09:04:09] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:04:09] local.ERROR: Undefined array key 0 {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 09:04:09] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:05:25] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:05:25] local.ERROR: Undefined array key 0 {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(48): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined array key 0 at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php:1777)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(1777): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(68): Illuminate\\Support\\Collection->offsetGet()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#79 {main}
+"}
+[2024-03-27 09:05:25] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:12:22] local.ERROR: syntax error, unexpected token "return", expecting ")" {"exception":"[object] (ParseError(code: 0): syntax error, unexpected token \"return\", expecting \")\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php:30)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/composer/ClassLoader.php(433): Composer\\Autoload\\{closure}()
+#1 [internal function]: Composer\\Autoload\\ClassLoader->loadClass()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(1097): is_a()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(1036): Illuminate\\Routing\\Route->controllerMiddleware()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(818): Illuminate\\Routing\\Route->gatherMiddleware()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(800): Illuminate\\Routing\\Router->gatherRouteMiddleware()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#33 {main}
+"}
+[2024-03-27 09:17:45] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:17:45] local.ERROR: Attempt to read property "salary_ref_number" on int {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Attempt to read property \"salary_ref_number\" on int at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php:44)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(44): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Attempt to read property \"salary_ref_number\" on int at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php:63)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(63): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 09:17:45] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:19:20] local.ERROR: Trying to access array offset on value of type int {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Trying to access array offset on value of type int at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php:45)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(45): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Trying to access array offset on value of type int at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php:64)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(64): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 09:20:11] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:20:11] local.ERROR: Call to undefined relationship [position_title] on model [App\Models\Audit\jcp]. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Call to undefined relationship [position_title] on model [App\\Models\\Audit\\jcp]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/RelationNotFoundException.php:35)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(805): Illuminate\\Database\\Eloquent\\RelationNotFoundException::make()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(110): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(801): Illuminate\\Database\\Eloquent\\Relations\\Relation::noConstraints()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(775): Illuminate\\Database\\Eloquent\\Builder->getRelation()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(755): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelation()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(723): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelations()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(203): Illuminate\\Database\\Eloquent\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(166): Illuminate\\Database\\Eloquent\\Relations\\Relation->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(786): Illuminate\\Database\\Eloquent\\Relations\\Relation->getEager()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(755): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelation()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(723): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelations()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(932): Illuminate\\Database\\Eloquent\\Builder->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#84 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#85 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#86 {main}
+
+[previous exception] [object] (Illuminate\\Database\\Eloquent\\RelationNotFoundException(code: 0): Call to undefined relationship [position_title] on model [App\\Models\\Audit\\jcp]. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/RelationNotFoundException.php:35)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(805): Illuminate\\Database\\Eloquent\\RelationNotFoundException::make()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(110): Illuminate\\Database\\Eloquent\\Builder->Illuminate\\Database\\Eloquent\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(801): Illuminate\\Database\\Eloquent\\Relations\\Relation::noConstraints()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(775): Illuminate\\Database\\Eloquent\\Builder->getRelation()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(755): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelation()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(723): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelations()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(203): Illuminate\\Database\\Eloquent\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(166): Illuminate\\Database\\Eloquent\\Relations\\Relation->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(786): Illuminate\\Database\\Eloquent\\Relations\\Relation->getEager()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(755): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelation()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(723): Illuminate\\Database\\Eloquent\\Builder->eagerLoadRelations()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(932): Illuminate\\Database\\Eloquent\\Builder->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#84 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#85 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#86 {main}
+"}
+[2024-03-27 09:20:11] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:20:44] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:20:44] local.ERROR: Attempt to read property "salary_ref_number" on null {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Attempt to read property \"salary_ref_number\" on null at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php:45)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(45): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Attempt to read property \"salary_ref_number\" on null at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php:64)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(64): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 09:20:44] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:23:53] local.ERROR: Property [position_title] does not exist on this collection instance. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(49): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (Exception(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(69): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 09:23:55] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:23:55] local.ERROR: Property [position_title] does not exist on this collection instance. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php","data":[]},"userId":25,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/org/org-table.blade.php(49): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (Exception(code: 0): Property [position_title] does not exist on this collection instance. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php:1007)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/09623bd4e0b500a1b293b70dd58df938.php(69): Illuminate\\Support\\Collection->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Org\\OrgTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 09:23:55] local.ERROR: Latest compiled component path not found. {"userId":25,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:35:22] local.ERROR: Class "Database\Factories\Audit\assessmentFactory" not found {"exception":"[object] (Error(code: 0): Class \"Database\\Factories\\Audit\\assessmentFactory\" not found at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php:829)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/HasFactory.php(16): Illuminate\\Database\\Eloquent\\Factories\\Factory::factoryForModel()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(25): App\\Models\\Audit\\assessment::factory()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#38 {main}
+"}
+[2024-03-27 09:38:47] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into "jcps" ("assessment_id", "user_id", "position_title", "job_grade", "duty_station", "job_purpose", "is_active", "updated_at", "created_at") values (2, 6, Sewing Machine Operator, B-8, Elenorburgh, They all returned from him to you, Though they were nowhere to be trampled under its feet, 'I move that the best thing to nurse--and she's such a simple question,' added the Hatter, who turned pale., 0, 2024-03-27 09:38:47, 2024-03-27 09:38:47)) {"exception":"[object] (Illuminate\\Database\\UniqueConstraintViolationException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into \"jcps\" (\"assessment_id\", \"user_id\", \"position_title\", \"job_grade\", \"duty_station\", \"job_purpose\", \"is_active\", \"updated_at\", \"created_at\") values (2, 6, Sewing Machine Operator, B-8, Elenorburgh, They all returned from him to you, Though they were nowhere to be trampled under its feet, 'I move that the best thing to nurse--and she's such a simple question,' added the Hatter, who turned pale., 0, 2024-03-27 09:38:47, 2024-03-27 09:38:47)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:808)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#50 {main}
+
+[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:571)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(571): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#52 {main}
+"}
+[2024-03-27 09:41:56] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:41:56] local.ERROR: SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select count(*) as aggregate from "users" where json_extract("jcp", '$."is_active"') = 1 and ("first_name" like %% or "email" like %% or "last_name" like %%)) {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select count(*) as aggregate from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1 and (\"first_name\" like %% or \"email\" like %% or \"last_name\" like %%)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3077): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3036): Illuminate\\Database\\Query\\Builder->runPaginationCountQuery()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(924): Illuminate\\Database\\Query\\Builder->getCountForPagination()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select count(*) as aggregate from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1 and (\"first_name\" like %% or \"email\" like %% or \"last_name\" like %%)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3077): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3036): Illuminate\\Database\\Query\\Builder->runPaginationCountQuery()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(924): Illuminate\\Database\\Query\\Builder->getCountForPagination()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:412)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(412): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3077): Illuminate\\Database\\Query\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3036): Illuminate\\Database\\Query\\Builder->runPaginationCountQuery()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(924): Illuminate\\Database\\Query\\Builder->getCountForPagination()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#84 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#85 {main}
+"}
+[2024-03-27 09:41:56] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:43:23] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:43:23] local.ERROR: SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select count(*) as aggregate from "users" where json_extract("jcp", '$."is_active"') = 1 and ("first_name" like %% or "email" like %% or "last_name" like %%)) {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select count(*) as aggregate from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1 and (\"first_name\" like %% or \"email\" like %% or \"last_name\" like %%)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3077): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3036): Illuminate\\Database\\Query\\Builder->runPaginationCountQuery()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(924): Illuminate\\Database\\Query\\Builder->getCountForPagination()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select count(*) as aggregate from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1 and (\"first_name\" like %% or \"email\" like %% or \"last_name\" like %%)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3077): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3036): Illuminate\\Database\\Query\\Builder->runPaginationCountQuery()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(924): Illuminate\\Database\\Query\\Builder->getCountForPagination()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#83 {main}
+
+[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:412)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(412): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3077): Illuminate\\Database\\Query\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3036): Illuminate\\Database\\Query\\Builder->runPaginationCountQuery()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(924): Illuminate\\Database\\Query\\Builder->getCountForPagination()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->paginate()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#84 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#85 {main}
+"}
+[2024-03-27 09:43:23] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:44:30] local.ERROR: syntax error, unexpected token "->" {"exception":"[object] (ParseError(code: 0): syntax error, unexpected token \"->\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php:22)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/composer/ClassLoader.php(433): Composer\\Autoload\\{closure}()
+#1 [internal function]: Composer\\Autoload\\ClassLoader->loadClass()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(1097): is_a()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(1036): Illuminate\\Routing\\Route->controllerMiddleware()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(818): Illuminate\\Routing\\Route->gatherMiddleware()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(800): Illuminate\\Routing\\Router->gatherRouteMiddleware()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#33 {main}
+"}
+[2024-03-27 09:44:35] local.ERROR: syntax error, unexpected token "->" {"exception":"[object] (ParseError(code: 0): syntax error, unexpected token \"->\" at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php:22)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/composer/ClassLoader.php(433): Composer\\Autoload\\{closure}()
+#1 [internal function]: Composer\\Autoload\\ClassLoader->loadClass()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(1097): is_a()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(1036): Illuminate\\Routing\\Route->controllerMiddleware()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(818): Illuminate\\Routing\\Route->gatherMiddleware()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(800): Illuminate\\Routing\\Router->gatherRouteMiddleware()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#33 {main}
+"}
+[2024-03-27 09:44:42] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:44:42] local.ERROR: SQLSTATE[HY000]: General error: 1 no such column: user.jcp (Connection: sqlite, SQL: select * from "users" where json_extract("user"."jcp", '$."is_active"') = 1) {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): SQLSTATE[HY000]: General error: 1 no such column: user.jcp (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"user\".\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 no such column: user.jcp (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"user\".\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 no such column: user.jcp at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:407)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(407): PDO->prepare()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#84 {main}
+"}
+[2024-03-27 09:44:42] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:44:56] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:44:56] local.ERROR: SQLSTATE[HY000]: General error: 1 no such column: users.jcp (Connection: sqlite, SQL: select * from "users" where json_extract("users"."jcp", '$."is_active"') = 1) {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): SQLSTATE[HY000]: General error: 1 no such column: users.jcp (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"users\".\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 no such column: users.jcp (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"users\".\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 no such column: users.jcp at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:407)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(407): PDO->prepare()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#84 {main}
+"}
+[2024-03-27 09:44:56] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:45:01] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:45:01] local.ERROR: SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select * from "users" where json_extract("jcp", '$."is_active"') = 1) {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:412)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(412): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#84 {main}
+"}
+[2024-03-27 09:45:01] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:45:10] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:45:10] local.ERROR: SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select * from "users" where json_extract("jcp", '$."is_active"') = 1) {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/org/index.blade.php(10): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON (Connection: sqlite, SQL: select * from \"users\" where json_extract(\"jcp\", '$.\"is_active\"') = 1) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#82 {main}
+
+[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 malformed JSON at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:412)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(412): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(398): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2898): Illuminate\\Database\\Connection->select()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2883): Illuminate\\Database\\Query\\Builder->runSelect()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3467): Illuminate\\Database\\Query\\Builder->Illuminate\\Database\\Query\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(2882): Illuminate\\Database\\Query\\Builder->onceWithColumns()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(738): Illuminate\\Database\\Query\\Builder->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(722): Illuminate\\Database\\Eloquent\\Builder->getModels()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Org/OrgTable.php(20): Illuminate\\Database\\Eloquent\\Builder->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Org\\OrgTable->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/334fe0225afff0582faf2bbfbc5112fa.php(26): Livewire\\LivewireManager->mount()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#78 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#79 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#80 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#81 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#82 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#83 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#84 {main}
+"}
+[2024-03-27 09:45:10] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 09:56:52] local.ERROR: View [assessments.show] not found. {"userId":1,"exception":"[object] (InvalidArgumentException(code: 0): View [assessments.show] not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php(79): Illuminate\\View\\FileViewFinder->findInPaths()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Factory.php(137): Illuminate\\View\\FileViewFinder->find()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(1020): Illuminate\\View\\Factory->make()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Http/Controllers/Assessment/AssessmentController.php(30): view()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): App\\Http\\Controllers\\Assessment\\AssessmentController->show()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#57 {main}
+"}
+[2024-03-27 11:28:18] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into "jcps" ("assessment_id", "user_id", "position_title", "job_grade", "duty_station", "job_purpose", "is_active", "updated_at", "created_at") values (2, 6, Stone Cutter, B-9, Weissnatland, Alice went on, turning to the door, she ran off at once, in a melancholy way, being quite unable to move. She soon got it out to sea!" But the insolence of his pocket, and was just going to leave., 1, 2024-03-27 11:28:18, 2024-03-27 11:28:18)) {"exception":"[object] (Illuminate\\Database\\UniqueConstraintViolationException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into \"jcps\" (\"assessment_id\", \"user_id\", \"position_title\", \"job_grade\", \"duty_station\", \"job_purpose\", \"is_active\", \"updated_at\", \"created_at\") values (2, 6, Stone Cutter, B-9, Weissnatland, Alice went on, turning to the door, she ran off at once, in a melancholy way, being quite unable to move. She soon got it out to sea!\" But the insolence of his pocket, and was just going to leave., 1, 2024-03-27 11:28:18, 2024-03-27 11:28:18)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:808)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#50 {main}
+
+[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:571)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(571): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#52 {main}
+"}
+[2024-03-27 11:28:29] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into "jcps" ("assessment_id", "user_id", "position_title", "job_grade", "duty_station", "job_purpose", "is_active", "updated_at", "created_at") values (2, 2, Electrician, B-6, East Theodoreville, Forty-two. ALL PERSONS MORE THAN A MILE HIGH TO LEAVE THE COURT.' Everybody looked at them with large round eyes, and feebly stretching out one paw, trying to put down her flamingo, and began to., 1, 2024-03-27 11:28:29, 2024-03-27 11:28:29)) {"exception":"[object] (Illuminate\\Database\\UniqueConstraintViolationException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into \"jcps\" (\"assessment_id\", \"user_id\", \"position_title\", \"job_grade\", \"duty_station\", \"job_purpose\", \"is_active\", \"updated_at\", \"created_at\") values (2, 2, Electrician, B-6, East Theodoreville, Forty-two. ALL PERSONS MORE THAN A MILE HIGH TO LEAVE THE COURT.' Everybody looked at them with large round eyes, and feebly stretching out one paw, trying to put down her flamingo, and began to., 1, 2024-03-27 11:28:29, 2024-03-27 11:28:29)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:808)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#50 {main}
+
+[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:571)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(571): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#52 {main}
+"}
+[2024-03-27 11:28:47] local.ERROR: SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into "jcps" ("assessment_id", "user_id", "position_title", "job_grade", "duty_station", "job_purpose", "is_active", "updated_at", "created_at") values (1, 9, Cost Estimator, B-2, Lake Kristopher, Alice said very humbly; 'I won't have any pepper in my life!' Just as she spoke; 'either you or your head must be what he did not dare to laugh; and, as the game was in confusion, getting the., 1, 2024-03-27 11:28:47, 2024-03-27 11:28:47)) {"exception":"[object] (Illuminate\\Database\\UniqueConstraintViolationException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id (Connection: sqlite, SQL: insert into \"jcps\" (\"assessment_id\", \"user_id\", \"position_title\", \"job_grade\", \"duty_station\", \"job_purpose\", \"is_active\", \"updated_at\", \"created_at\") values (1, 9, Cost Estimator, B-2, Lake Kristopher, Alice said very humbly; 'I won't have any pepper in my life!' Just as she spoke; 'either you or your head must be what he did not dare to laugh; and, as the game was in confusion, getting the., 1, 2024-03-27 11:28:47, 2024-03-27 11:28:47)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:808)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#50 {main}
+
+[previous exception] [object] (PDOException(code: 23000): SQLSTATE[23000]: Integrity constraint violation: 19 UNIQUE constraint failed: jcps.user_id, jcps.assessment_id at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:571)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(571): PDOStatement->execute()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(560): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(524): Illuminate\\Database\\Connection->statement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Processors/Processor.php(32): Illuminate\\Database\\Connection->insert()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3560): Illuminate\\Database\\Query\\Processors\\Processor->processInsertGetId()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Builder.php(1971): Illuminate\\Database\\Query\\Builder->insertGetId()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1338): Illuminate\\Database\\Eloquent\\Builder->__call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1303): Illuminate\\Database\\Eloquent\\Model->insertAndSetId()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(1142): Illuminate\\Database\\Eloquent\\Model->performInsert()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(338): Illuminate\\Database\\Eloquent\\Model->save()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Traits/EnumeratesValues.php(236): Illuminate\\Database\\Eloquent\\Factories\\Factory->Illuminate\\Database\\Eloquent\\Factories\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(333): Illuminate\\Support\\Collection->each()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Factories/Factory.php(291): Illuminate\\Database\\Eloquent\\Factories\\Factory->store()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/database/seeders/DatabaseSeeder.php(37): Illuminate\\Database\\Eloquent\\Factories\\Factory->create()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Database\\Seeders\\DatabaseSeeder->run()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(184): Illuminate\\Container\\Container->call()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Seeder.php(193): Illuminate\\Database\\Seeder->Illuminate\\Database\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(70): Illuminate\\Database\\Seeder->__invoke()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php(155): Illuminate\\Database\\Console\\Seeds\\SeedCommand->Illuminate\\Database\\Console\\Seeds\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php(69): Illuminate\\Database\\Eloquent\\Model::unguarded()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Seeds\\SeedCommand->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(67): Illuminate\\Console\\Command->run()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Concerns/CallsCommands.php(28): Illuminate\\Console\\Command->runCommand()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(93): Illuminate\\Console\\Command->call()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/FreshCommand.php(69): Illuminate\\Database\\Console\\Migrations\\FreshCommand->runSeeder()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): Illuminate\\Database\\Console\\Migrations\\FreshCommand->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Container.php(662): Illuminate\\Container\\BoundMethod::call()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(212): Illuminate\\Container\\Container->call()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(279): Illuminate\\Console\\Command->execute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#52 {main}
+"}
+[2024-03-27 11:40:49] local.ERROR: Undefined variable $categories {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/jcps/j-c-p-table.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined variable $categories at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/jcps/j-c-p-table.blade.php:23)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/jcps/j-c-p-table.blade.php(23): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Jcps\\JCPTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/jcp/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined variable $categories at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/5c6e7c00cca34d967316cd6355edafed.php:51)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/5c6e7c00cca34d967316cd6355edafed.php(51): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Jcps\\JCPTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/4a2f250bfd0e43a19a1b8c7a2ccac691.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 11:40:52] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 11:40:52] local.ERROR: Undefined variable $categories {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/jcps/j-c-p-table.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined variable $categories at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/jcps/j-c-p-table.blade.php:23)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/jcps/j-c-p-table.blade.php(23): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Jcps\\JCPTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/jcp/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined variable $categories at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/5c6e7c00cca34d967316cd6355edafed.php:51)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/5c6e7c00cca34d967316cd6355edafed.php(51): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Jcps\\JCPTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/4a2f250bfd0e43a19a1b8c7a2ccac691.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 11:40:52] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:00:23] local.ERROR: Unable to find component: [assessments.assessments-table] {"userId":1,"exception":"[object] (Livewire\\Exceptions\\ComponentNotFoundException(code: 0): Unable to find component: [assessments.assessments-table] at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php:116)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(25): Livewire\\Mechanisms\\ComponentRegistry->getNameAndClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(57): Livewire\\Mechanisms\\ComponentRegistry->new()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(41): Livewire\\LivewireManager->new()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#68 {main}
+"}
+[2024-03-27 12:00:27] local.ERROR: Unable to find component: [assessments.assessments-table] {"userId":1,"exception":"[object] (Livewire\\Exceptions\\ComponentNotFoundException(code: 0): Unable to find component: [assessments.assessments-table] at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php:116)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(25): Livewire\\Mechanisms\\ComponentRegistry->getNameAndClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(57): Livewire\\Mechanisms\\ComponentRegistry->new()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(41): Livewire\\LivewireManager->new()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#68 {main}
+"}
+[2024-03-27 12:00:41] local.ERROR: Unable to find component: [system.assessments.assessments-table] {"userId":1,"exception":"[object] (Livewire\\Exceptions\\ComponentNotFoundException(code: 0): Unable to find component: [system.assessments.assessments-table] at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php:116)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(25): Livewire\\Mechanisms\\ComponentRegistry->getNameAndClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(57): Livewire\\Mechanisms\\ComponentRegistry->new()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(41): Livewire\\LivewireManager->new()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#68 {main}
+"}
+[2024-03-27 12:00:45] local.ERROR: Unable to find component: [system.assessments.assessments-table] {"userId":1,"exception":"[object] (Livewire\\Exceptions\\ComponentNotFoundException(code: 0): Unable to find component: [system.assessments.assessments-table] at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php:116)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(25): Livewire\\Mechanisms\\ComponentRegistry->getNameAndClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(57): Livewire\\Mechanisms\\ComponentRegistry->new()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(41): Livewire\\LivewireManager->new()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#68 {main}
+"}
+[2024-03-27 12:00:58] local.ERROR: Unable to find component: [system.assessment.assessments-table] {"userId":1,"exception":"[object] (Livewire\\Exceptions\\ComponentNotFoundException(code: 0): Unable to find component: [system.assessment.assessments-table] at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php:116)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ComponentRegistry.php(25): Livewire\\Mechanisms\\ComponentRegistry->getNameAndClass()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(57): Livewire\\Mechanisms\\ComponentRegistry->new()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(41): Livewire\\LivewireManager->new()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#68 {main}
+"}
+[2024-03-27 12:02:29] local.ERROR: Undefined variable $assessment {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined variable $assessment at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php:4)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php(4): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Assessment\\AssessmentTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined variable $assessment at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/fb95f7e26492eceffaec459408cf1eff.php:4)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/fb95f7e26492eceffaec459408cf1eff.php(4): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Assessment\\AssessmentTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 12:02:34] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:02:34] local.ERROR: Undefined variable $assessment {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined variable $assessment at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php:4)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php(4): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Assessment\\AssessmentTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined variable $assessment at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/fb95f7e26492eceffaec459408cf1eff.php:4)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/fb95f7e26492eceffaec459408cf1eff.php(4): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Assessment\\AssessmentTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 12:02:34] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:03:06] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:03:06] local.ERROR: Undefined variable $assessment {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Undefined variable $assessment at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php:4)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/livewire/system/assessment/assessment-table.blade.php(4): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Assessment\\AssessmentTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php(10): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+
+[previous exception] [object] (ErrorException(code: 0): Undefined variable $assessment at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/fb95f7e26492eceffaec459408cf1eff.php:4)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php(256): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/fb95f7e26492eceffaec459408cf1eff.php(4): Illuminate\\Foundation\\Bootstrap\\HandleExceptions->Illuminate\\Foundation\\Bootstrap\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(37): include('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(38): App\\Livewire\\System\\Assessment\\AssessmentTable->Livewire\\Mechanisms\\ExtendBlade\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(16): Illuminate\\View\\Engines\\CompilerEngine->get()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(239): Illuminate\\View\\View->render()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(283): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->Livewire\\Mechanisms\\HandleComponents\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(231): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->trackInRenderStack()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#77 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#78 {main}
+"}
+[2024-03-27 12:03:06] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:08:14] local.ERROR: Property [$search] not found on component: [system.assessment.assessment-table] {"userId":1,"exception":"[object] (Livewire\\Exceptions\\PropertyNotFoundException(code: 0): Property [$search] not found on component: [system.assessment.assessment-table] at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Component.php:105)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(12): Livewire\\Component->__get()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#74 {main}
+"}
+[2024-03-27 12:08:34] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:08:34] local.ERROR: Call to undefined method App\Models\Audit\assessment::search() {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Call to undefined method App\\Models\\Audit\\assessment::search() at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (BadMethodCallException(code: 0): Call to undefined method App\\Models\\Audit\\assessment::search() at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 12:08:34] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:09:56] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:09:56] local.ERROR: Call to undefined method App\Models\Audit\assessment::search() {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Call to undefined method App\\Models\\Audit\\assessment::search() at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (BadMethodCallException(code: 0): Call to undefined method App\\Models\\Audit\\assessment::search() at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 12:09:56] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:10:52] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:10:52] local.ERROR: Call to undefined method App\Models\Audit\assessment::search() {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Call to undefined method App\\Models\\Audit\\assessment::search() at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (BadMethodCallException(code: 0): Call to undefined method App\\Models\\Audit\\assessment::search() at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Model::throwBadMethodCallException()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2339): Illuminate\\Database\\Eloquent\\Model->forwardCallTo()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php(2351): Illuminate\\Database\\Eloquent\\Model->__call()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): Illuminate\\Database\\Eloquent\\Model::__callStatic()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 12:10:52] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:29:42] local.ERROR: Unable to call component method. Public method [startConfirmingPassword] not found on component {"userId":1,"exception":"[object] (Livewire\\Exceptions\\MethodNotFoundException(code: 0): Unable to call component method. Public method [startConfirmingPassword] not found on component at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php:463)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(99): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->callMethods()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(96): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->update()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleRequests/HandleRequests.php(89): Livewire\\LivewireManager->update()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): Livewire\\Mechanisms\\HandleRequests\\HandleRequests->handleUpdate()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#48 {main}
+"}
+[2024-03-27 12:29:48] local.ERROR: Unable to call component method. Public method [startConfirmingPassword] not found on component {"userId":1,"exception":"[object] (Livewire\\Exceptions\\MethodNotFoundException(code: 0): Unable to call component method. Public method [startConfirmingPassword] not found on component at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php:463)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(99): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->callMethods()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(96): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->update()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleRequests/HandleRequests.php(89): Livewire\\LivewireManager->update()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): Livewire\\Mechanisms\\HandleRequests\\HandleRequests->handleUpdate()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#48 {main}
+"}
+[2024-03-27 12:31:13] local.ERROR: Unable to call component method. Public method [stopConfirmingPassword] not found on component {"userId":1,"exception":"[object] (Livewire\\Exceptions\\MethodNotFoundException(code: 0): Unable to call component method. Public method [stopConfirmingPassword] not found on component at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php:463)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(99): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->callMethods()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(96): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->update()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleRequests/HandleRequests.php(89): Livewire\\LivewireManager->update()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): Livewire\\Mechanisms\\HandleRequests\\HandleRequests->handleUpdate()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(46): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#48 {main}
+"}
+[2024-03-27 12:34:27] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(330): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(49): Illuminate\\Foundation\\Exceptions\\Handler->report()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 12:34:27] local.ERROR: View [livewire.system.assessment.assessment-table] not found. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): View [livewire.system.assessment.assessment-table] not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php(79): Illuminate\\View\\FileViewFinder->findInPaths()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Factory.php(137): Illuminate\\View\\FileViewFinder->find()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(1020): Illuminate\\View\\Factory->make()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): view()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/directories/assessments/index.blade.php(10): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+
+[previous exception] [object] (InvalidArgumentException(code: 0): View [livewire.system.assessment.assessment-table] not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php(79): Illuminate\\View\\FileViewFinder->findInPaths()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Factory.php(137): Illuminate\\View\\FileViewFinder->find()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(1020): Illuminate\\View\\Factory->make()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Livewire/System/Assessment/AssessmentTable.php(13): view()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(36): App\\Livewire\\System\\Assessment\\AssessmentTable->render()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/Util.php(41): Illuminate\\Container\\BoundMethod::Illuminate\\Container\\{closure}()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(93): Illuminate\\Container\\Util::unwrapIfClosure()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Container/BoundMethod.php(35): Illuminate\\Container\\BoundMethod::callBoundMethod()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Wrapped.php(23): Illuminate\\Container\\BoundMethod::call()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(269): Livewire\\Wrapped->__call()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(229): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->getView()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/HandleComponents/HandleComponents.php(52): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/LivewireManager.php(72): Livewire\\Mechanisms\\HandleComponents\\HandleComponents->mount()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/7942981e61810789fc962f53cb0b35b6.php(26): Livewire\\LivewireManager->mount()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#69 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#70 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#71 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#72 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#73 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#74 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#75 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#76 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#77 {main}
+"}
+[2024-03-27 12:34:27] local.ERROR: Latest compiled component path not found. {"userId":1,"exception":"[object] (Exception(code: 0): Latest compiled component path not found. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/DeterministicBladeKeys.php:16)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/RenderComponent.php(26): Livewire\\Mechanisms\\ExtendBlade\\DeterministicBladeKeys->generate()
+#1 [internal function]: Livewire\\Mechanisms\\RenderComponent::livewire()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(662): call_user_func()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(637): Illuminate\\View\\Compilers\\BladeCompiler->callCustomDirective()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(560): Illuminate\\View\\Compilers\\BladeCompiler->compileStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(493): Illuminate\\View\\Compilers\\BladeCompiler->compileStatements()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Compilers/BladeCompiler.php(282): Illuminate\\View\\Compilers\\BladeCompiler->parseToken()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(33): Illuminate\\View\\Compilers\\BladeCompiler->compileString()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/BladeSourceMapCompiler.php(19): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->compileSourcemap()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(149): Spatie\\LaravelIgnition\\Views\\BladeSourceMapCompiler->detectLineNumber()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(87): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->getBladeLineNumber()
+#11 [internal function]: Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->Spatie\\LaravelIgnition\\Views\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Arr.php(605): array_map()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Collections/Collection.php(777): Illuminate\\Support\\Arr::map()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(84): Illuminate\\Support\\Collection->map()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/Views/ViewExceptionMapper.php(53): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->modifyViewsInTrace()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/spatie/laravel-ignition/src/IgnitionServiceProvider.php(208): Spatie\\LaravelIgnition\\Views\\ViewExceptionMapper->map()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(654): Spatie\\LaravelIgnition\\IgnitionServiceProvider->Spatie\\LaravelIgnition\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php(561): Illuminate\\Foundation\\Exceptions\\Handler->mapException()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Pipeline.php(51): Illuminate\\Foundation\\Exceptions\\Handler->render()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(146): Illuminate\\Routing\\Pipeline->handleException()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#65 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#66 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#67 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#68 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#69 {main}
+"}
+[2024-03-27 13:29:19] local.ERROR: Not enough arguments (missing: "model"). {"exception":"[object] (Symfony\\Component\\Console\\Exception\\RuntimeException(code: 0): Not enough arguments (missing: \"model\"). at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Input/Input.php:69)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Command/Command.php(274): Symfony\\Component\\Console\\Input\\Input->validate()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Console/Command.php(181): Symfony\\Component\\Console\\Command\\Command->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(1049): Illuminate\\Console\\Command->run()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(318): Symfony\\Component\\Console\\Application->doRunCommand()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/symfony/console/Application.php(169): Symfony\\Component\\Console\\Application->doRun()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php(196): Symfony\\Component\\Console\\Application->run()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1183): Illuminate\\Foundation\\Console\\Kernel->handle()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/artisan(13): Illuminate\\Foundation\\Application->handleCommand()
+#8 {main}
+"}
+[2024-03-28 13:16:45] local.ERROR: Call to undefined method Illuminate\Database\Eloquent\Relations\HasMany::toArray() {"userId":7,"exception":"[object] (BadMethodCallException(code: 0): Call to undefined method Illuminate\\Database\\Eloquent\\Relations\\HasMany::toArray() at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php:67)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(36): Illuminate\\Database\\Eloquent\\Relations\\Relation::throwBadMethodCallException()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Support/Traits/ForwardsCalls.php(52): Illuminate\\Database\\Eloquent\\Relations\\Relation->forwardCallTo()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Relation.php(517): Illuminate\\Database\\Eloquent\\Relations\\Relation->forwardDecoratedCallTo()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Http/Controllers/Assessment/AssessmentController.php(32): Illuminate\\Database\\Eloquent\\Relations\\Relation->__call()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): App\\Http\\Controllers\\Assessment\\AssessmentController->show()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#57 {main}
+"}
+[2024-03-28 13:35:00] local.ERROR: Route [assessment.storeEmployee] not defined. {"view":{"view":"/home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/assessments/show.blade.php","data":[]},"userId":1,"exception":"[object] (Spatie\\LaravelIgnition\\Exceptions\\ViewException(code: 0): Route [assessment.storeEmployee] not defined. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php:477)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(811): Illuminate\\Routing\\UrlGenerator->route()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/resources/views/assessments/show.blade.php(68): route()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#65 {main}
+
+[previous exception] [object] (Symfony\\Component\\Routing\\Exception\\RouteNotFoundException(code: 0): Route [assessment.storeEmployee] not defined. at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/UrlGenerator.php:477)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php(811): Illuminate\\Routing\\UrlGenerator->route()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/storage/framework/views/90296acbddce66f64fd39be4f74ce452.php(82): route()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(123): require('...')
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(124): Illuminate\\Filesystem\\Filesystem::Illuminate\\Filesystem\\{closure}()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php(58): Illuminate\\Filesystem\\Filesystem->getRequire()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(22): Illuminate\\View\\Engines\\PhpEngine->evaluatePath()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Engines/CompilerEngine.php(73): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->evaluatePath()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Mechanisms/ExtendBlade/ExtendedCompilerEngine.php(10): Illuminate\\View\\Engines\\CompilerEngine->get()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(208): Livewire\\Mechanisms\\ExtendBlade\\ExtendedCompilerEngine->get()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(191): Illuminate\\View\\View->getContents()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/View.php(160): Illuminate\\View\\View->renderContents()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(70): Illuminate\\View\\View->render()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Response.php(35): Illuminate\\Http\\Response->setContent()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(918): Illuminate\\Http\\Response->__construct()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(885): Illuminate\\Routing\\Router::toResponse()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Routing\\Router->prepareResponse()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#61 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#62 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#63 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#64 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#65 {main}
+"}
+[2024-03-28 13:37:40] local.ERROR: SQLSTATE[HY000]: General error: 1 no such column: status (Connection: sqlite, SQL: update "enrollments" set "status" = 1 where "enrollments"."user_id" = 1 and "assessment_id" in (1)) {"userId":1,"exception":"[object] (Illuminate\\Database\\QueryException(code: HY000): SQLSTATE[HY000]: General error: 1 no such column: status (Connection: sqlite, SQL: update \"enrollments\" set \"status\" = 1 where \"enrollments\".\"user_id\" = 1 and \"assessment_id\" in (1)) at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:813)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(584): Illuminate\\Database\\Connection->run()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(536): Illuminate\\Database\\Connection->affectingStatement()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3623): Illuminate\\Database\\Connection->update()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php(221): Illuminate\\Database\\Query\\Builder->update()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Http/Controllers/Assessment/AssessmentController.php(53): Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany->updateExistingPivot()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): App\\Http\\Controllers\\Assessment\\AssessmentController->storeEmployee()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#59 {main}
+
+[previous exception] [object] (PDOException(code: HY000): SQLSTATE[HY000]: General error: 1 no such column: status at /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php:592)
+[stacktrace]
+#0 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(592): PDO->prepare()
+#1 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(800): Illuminate\\Database\\Connection->Illuminate\\Database\\{closure}()
+#2 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(767): Illuminate\\Database\\Connection->runQueryCallback()
+#3 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(584): Illuminate\\Database\\Connection->run()
+#4 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Connection.php(536): Illuminate\\Database\\Connection->affectingStatement()
+#5 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php(3623): Illuminate\\Database\\Connection->update()
+#6 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/Concerns/InteractsWithPivotTable.php(221): Illuminate\\Database\\Query\\Builder->update()
+#7 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/app/Http/Controllers/Assessment/AssessmentController.php(53): Illuminate\\Database\\Eloquent\\Relations\\BelongsToMany->updateExistingPivot()
+#8 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/ControllerDispatcher.php(46): App\\Http\\Controllers\\Assessment\\AssessmentController->storeEmployee()
+#9 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(260): Illuminate\\Routing\\ControllerDispatcher->dispatch()
+#10 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Route.php(206): Illuminate\\Routing\\Route->runController()
+#11 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(806): Illuminate\\Routing\\Route->run()
+#12 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Routing\\Router->Illuminate\\Routing\\{closure}()
+#13 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/EnsureEmailIsVerified.php(41): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#14 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\EnsureEmailIsVerified->handle()
+#15 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Middleware/SubstituteBindings.php(50): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#16 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Routing\\Middleware\\SubstituteBindings->handle()
+#17 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/AuthenticateSession.php(67): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#18 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\AuthenticateSession->handle()
+#19 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php(64): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#20 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Auth\\Middleware\\Authenticate->handle()
+#21 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php(81): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#22 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\VerifyCsrfToken->handle()
+#23 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#24 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\View\\Middleware\\ShareErrorsFromSession->handle()
+#25 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(121): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#26 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(64): Illuminate\\Session\\Middleware\\StartSession->handleStatefulRequest()
+#27 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Session\\Middleware\\StartSession->handle()
+#28 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php(37): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#29 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\AddQueuedCookiesToResponse->handle()
+#30 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php(75): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#31 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Cookie\\Middleware\\EncryptCookies->handle()
+#32 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#33 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(805): Illuminate\\Pipeline\\Pipeline->then()
+#34 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(784): Illuminate\\Routing\\Router->runRouteWithinStack()
+#35 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(748): Illuminate\\Routing\\Router->runRoute()
+#36 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Routing/Router.php(737): Illuminate\\Routing\\Router->dispatchToRoute()
+#37 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(200): Illuminate\\Routing\\Router->dispatch()
+#38 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(144): Illuminate\\Foundation\\Http\\Kernel->Illuminate\\Foundation\\Http\\{closure}()
+#39 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/livewire/livewire/src/Features/SupportDisablingBackButtonCache/DisableBackButtonCacheMiddleware.php(19): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#40 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Livewire\\Features\\SupportDisablingBackButtonCache\\DisableBackButtonCacheMiddleware->handle()
+#41 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#42 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php(31): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#43 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\ConvertEmptyStringsToNull->handle()
+#44 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php(21): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#45 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php(50): Illuminate\\Foundation\\Http\\Middleware\\TransformsRequest->handle()
+#46 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\TrimStrings->handle()
+#47 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/ValidatePostSize.php(27): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#48 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\ValidatePostSize->handle()
+#49 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php(103): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#50 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Foundation\\Http\\Middleware\\PreventRequestsDuringMaintenance->handle()
+#51 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/HandleCors.php(49): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#52 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\HandleCors->handle()
+#53 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php(57): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#54 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(183): Illuminate\\Http\\Middleware\\TrustProxies->handle()
+#55 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php(119): Illuminate\\Pipeline\\Pipeline->Illuminate\\Pipeline\\{closure}()
+#56 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(175): Illuminate\\Pipeline\\Pipeline->then()
+#57 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php(144): Illuminate\\Foundation\\Http\\Kernel->sendRequestThroughRouter()
+#58 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(1168): Illuminate\\Foundation\\Http\\Kernel->handle()
+#59 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/public/index.php(17): Illuminate\\Foundation\\Application->handleRequest()
+#60 /home/hubert/Desktop/lighthouse/projects/skillharbor-open/vendor/laravel/framework/src/Illuminate/Foundation/resources/server.php(16): require_once('...')
+#61 {main}
+"}