-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2cea6ff
commit d69b3ee
Showing
8 changed files
with
135 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,11 +13,6 @@ class DatabaseSeeder extends Seeder | |
*/ | ||
public function run(): void | ||
{ | ||
// User::factory(10)->create(); | ||
|
||
User::factory()->create([ | ||
'name' => 'Test User', | ||
'email' => '[email protected]', | ||
]); | ||
User::factory(100)->create(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,13 @@ | ||
<div class="flex flex-wrap"> | ||
<div class="w-full sm:w-1/2 p-2"> | ||
<div class="flex flex-col bg-white p-2 rounded-lg"> | ||
<i class="fas btn btn-square btn-ghost bg-gray-100 btn-sm fa-check-circle text-blue-500"></i> | ||
<div> | ||
<h2 class="font-bold text-xl">Plagiarism Free</h2> | ||
<p class="text-gray-600">We ensure all our papers are plagiarism free.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="w-full sm:w-1/2 p-2"> | ||
<div class="flex flex-col bg-white p-2 rounded-lg"> | ||
<i class="fas btn btn-square btn-ghost bg-gray-100 btn-sm fa-user-graduate text-blue-500"></i> | ||
<div> | ||
<h2 class="font-bold text-xl">Expert Writers</h2> | ||
<p class="text-gray-600">Our writers are experts in their respective fields.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="w-full sm:w-1/2 p-2"> | ||
<div class="flex flex-col bg-white p-2 rounded-lg"> | ||
<i class="fas btn btn-square btn-ghost bg-gray-100 btn-sm fa-clock text-blue-500"></i> | ||
<div> | ||
<h2 class="font-bold text-xl">On Time Delivery</h2> | ||
<p class="text-gray-600">We always deliver our work on time.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="w-full sm:w-1/2 p-2"> | ||
<div class="flex flex-col bg-white p-2 rounded-lg"> | ||
<i class="fas btn btn-square btn-ghost bg-gray-100 btn-sm fa-money-bill-wave text-blue-500"></i> | ||
<div> | ||
<h2 class="font-bold text-xl">Money Back Guarantee</h2> | ||
<p class="text-gray-600">We offer a money back guarantee if you're not satisfied.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4"> | ||
@foreach($features as $feature) | ||
<div class="flex flex-col bg-white h-44 p-2 rounded-lg"> | ||
<div class="flex flex-col bg-white h-44 p-2 rounded-lg"> | ||
<i class="fas btn btn-square mb-3 rounded-md btn-ghost bg-gray-100 btn-sm {{ $feature['icon'] }} text-blue-500"></i> | ||
<div> | ||
<h2 class="font-bold text-black/80 text-lg">{{ $feature['title'] }}</h2> | ||
<p class="text-gray-500">{{ $feature['description'] }}</p> | ||
</div> | ||
</div> | ||
</div> | ||
@endforeach | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters