-
-
Notifications
You must be signed in to change notification settings - Fork 325
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
0535989
commit ac8b2aa
Showing
7 changed files
with
21 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
<div class="mb-12 w-full text-slate-200"> | ||
@if ($forYouQuestions->isEmpty()) | ||
<section class="rounded-lg"> | ||
<p class="my-8 text-center text-lg text-slate-500"> | ||
We haven't found any questions that may interest you based on the activity you've done on Pinkary. | ||
</p> | ||
<p class="my-8 text-center text-lg text-slate-500">We haven't found any questions that may interest you based on the activity you've done on Pinkary.</p> | ||
</section> | ||
@else | ||
<section class="mb-12 min-h-screen space-y-10"> | ||
@foreach ($forYouQuestions as $question) | ||
<livewire:questions.show :questionId="$question->id" :key="'question-' . $question->id" :inIndex="true" :pinnable="false" /> | ||
@endforeach | ||
|
||
<x-load-more-button :perPage="$perPage" :paginator="$forYouQuestions" | ||
message="There are no more questions to load, or you have scrolled too far." /> | ||
<x-load-more-button | ||
:perPage="$perPage" | ||
:paginator="$forYouQuestions" | ||
message="There are no more questions to load, or you have scrolled too far." | ||
/> | ||
</section> | ||
@endif | ||
</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
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