Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincrozat committed Oct 24, 2023
1 parent 74eed18 commit ac005d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public function run() : void

Merchant::factory(10)->create();

// Opening::factory(10)->create();
Opening::factory(10)->create();
}
}
6 changes: 3 additions & 3 deletions resources/views/openings/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</h1>
</div>

@if ($openings->isNotEmpty())
@if (! $openings->isNotEmpty())
<x-section class="container mt-16">
<x-slot:title class="font-bold text-center text-2xl/tight md:text-3xl/tight">
@choice(':count job offer is available|:count job offers are available', $openings->count())
Expand All @@ -37,13 +37,13 @@
<p class="mt-16 font-bold text-center text-xl/tight md:text-2xl/tight">Meanwhile…</p>

<div class="container mt-16 sm:text-xl lg:max-w-screen-md">
<p class="font-bold text-xl/tight md:text-2xl/tight">Developers,<br />I have a few recommendations.</p>
<p class="font-bold text-xl/tight md:text-2xl/tight">Developers,<br /> get ready to be interviewed.</p>
<x-icon-checklist class="float-right w-16 h-16 mt-1 mb-8 ml-8 -mr-4 text-green-500 md:mb-16 md:ml-16 md:w-24 md:h-24" />
<p class="mt-4">If you need guidance on how to put the odds in your favor, you should read my article "<a wire:navigate.hover href="/laravel-interview-questions" class="text-blue-600 underline">Laravel interview questions and answers</a>."</p>
</div>

<div class="container mt-16 sm:text-xl lg:max-w-screen-md">
<p class="font-bold text-xl/tight md:text-2xl/tight">Business owners,<br />you could find a developer, now!</p>
<p class="font-bold text-xl/tight md:text-2xl/tight">Business owners,<br /> find a developer, now!</p>
<x-icon-interview class="float-right w-16 h-16 mt-1 mb-8 ml-8 text-green-500 md:mb-16 md:ml-16 md:w-24 md:h-24" />
<p class="mt-4">My blog is visited by 40,000 Laravel developers each month. This is the right place to find your ideal candidate.</p>
<x-button href="{{ route('openings.create') }}" class="inline-block px-6 mt-8 text-white bg-orange-400 sm:text-lg">
Expand Down

0 comments on commit ac005d5

Please sign in to comment.