-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from PortableStudios/feature/FILACMS-17_Relate…
…d_content_fixes FILACMS-17: Fix when related drop down is cleared
- Loading branch information
Showing
2 changed files
with
31 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<div class="border rounded"> | ||
<div class="p-4 font-bold related-block-heading border-b block"> | ||
<h3>{{ $heading }}</h3> | ||
@php | ||
xdebug_break(); | ||
@endphp | ||
</div> | ||
<div class="p-4"> | ||
<div class="flex flex-wrap gap-4"> | ||
@foreach ($selectedContents as $key => $item) | ||
<div class="w-1/3 overflow-hidden border rounded border-md"> | ||
<a href="{{ $item['url'] }}"> | ||
<div class="px-4 py-1 uppercase semibold">{{ \Str::studly($item['source']) }}</div> | ||
<div class="px-4 py-4"> | ||
<h4>{{ $item['source'] }}</h4> | ||
</div> | ||
</a> | ||
</div> | ||
@endforeach | ||
</div> | ||
</div> | ||
</div> |