-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
4 changed files
with
163 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\View\View; | ||
use App\Models\Inscription; | ||
|
||
class CollectionController extends Controller | ||
{ | ||
public function __invoke(): View | ||
{ | ||
$inscriptions = Inscription::orderBy('name')->paginate(6); | ||
|
||
return view('collection', [ | ||
'inscriptions' => $inscriptions, | ||
]); | ||
} | ||
} |
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,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<title>Pizza Ninjas Collection | Bitcoin Ordinals</title> | ||
|
||
@vite('resources/css/app.css') | ||
|
||
<x-layout.head.opengraph/> | ||
<x-layout.head.twitter/> | ||
<x-layout.head.favicons/> | ||
|
||
@if(config('services.fathom.site_id')) | ||
<script src="https://cdn.usefathom.com/script.js" data-site="{{ config('services.fathom.site_id') }}" defer></script> | ||
@endif | ||
</head> | ||
<body class="bg-pizza-orange"> | ||
<x-navigation-bar/> | ||
|
||
<main class="flex my-12 justify-center border-b border-black"> | ||
@foreach($inscriptions as $inscription) | ||
<a href="{{ route('inscription', $inscription) }}"> | ||
@svg('ninjas.'.$inscription->getInternalCollectionId(), 'w-56 h-56') | ||
</a> | ||
@endforeach | ||
</main> | ||
|
||
<section class="px-8"> | ||
{{ $inscriptions->onEachSide(5)->links() }} | ||
</section> | ||
|
||
<x-layout.footer/> | ||
</body> | ||
</html> |
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,106 @@ | ||
@if ($paginator->hasPages()) | ||
<nav role="navigation" aria-label="{{ __('Pagination Navigation') }}" class="flex items-center justify-between"> | ||
<div class="flex justify-between flex-1 sm:hidden"> | ||
@if ($paginator->onFirstPage()) | ||
<span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md dark:text-gray-600 dark:bg-gray-800 dark:border-gray-600"> | ||
{!! __('pagination.previous') !!} | ||
</span> | ||
@else | ||
<a href="{{ $paginator->previousPageUrl() }}" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:text-gray-300 dark:focus:border-blue-700 dark:active:bg-gray-700 dark:active:text-gray-300"> | ||
{!! __('pagination.previous') !!} | ||
</a> | ||
@endif | ||
|
||
@if ($paginator->hasMorePages()) | ||
<a href="{{ $paginator->nextPageUrl() }}" class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:text-gray-300 dark:focus:border-blue-700 dark:active:bg-gray-700 dark:active:text-gray-300"> | ||
{!! __('pagination.next') !!} | ||
</a> | ||
@else | ||
<span class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md dark:text-gray-600 dark:bg-gray-800 dark:border-gray-600"> | ||
{!! __('pagination.next') !!} | ||
</span> | ||
@endif | ||
</div> | ||
|
||
<div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between"> | ||
<div> | ||
<p class="text-sm text-orange-100 leading-5 dark:text-gray-400"> | ||
{!! __('Showing') !!} | ||
@if ($paginator->firstItem()) | ||
<span class="font-medium">{{ $paginator->firstItem() }}</span> | ||
{!! __('to') !!} | ||
<span class="font-medium">{{ $paginator->lastItem() }}</span> | ||
@else | ||
{{ $paginator->count() }} | ||
@endif | ||
{!! __('of') !!} | ||
<span class="font-medium">{{ $paginator->total() }}</span> | ||
{!! __('results') !!} | ||
</p> | ||
</div> | ||
|
||
<div> | ||
<span class="relative z-0 inline-flex rtl:flex-row-reverse shadow-sm rounded-md"> | ||
{{-- Previous Page Link --}} | ||
@if ($paginator->onFirstPage()) | ||
<span aria-disabled="true" aria-label="{{ __('pagination.previous') }}"> | ||
<span class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-l-md leading-5 dark:bg-gray-800 dark:border-gray-600" aria-hidden="true"> | ||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> | ||
<path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd" /> | ||
</svg> | ||
</span> | ||
</span> | ||
@else | ||
<a href="{{ $paginator->previousPageUrl() }}" rel="prev" class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-l-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:active:bg-gray-700 dark:focus:border-blue-800" aria-label="{{ __('pagination.previous') }}"> | ||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> | ||
<path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd" /> | ||
</svg> | ||
</a> | ||
@endif | ||
|
||
{{-- Pagination Elements --}} | ||
@foreach ($elements as $element) | ||
{{-- "Three Dots" Separator --}} | ||
@if (is_string($element)) | ||
<span aria-disabled="true"> | ||
<span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 cursor-default leading-5 dark:bg-gray-800 dark:border-gray-600">{{ $element }}</span> | ||
</span> | ||
@endif | ||
|
||
{{-- Array Of Links --}} | ||
@if (is_array($element)) | ||
@foreach ($element as $page => $url) | ||
@if ($page == $paginator->currentPage()) | ||
<span aria-current="page"> | ||
<span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 dark:bg-gray-800 dark:border-gray-600">{{ $page }}</span> | ||
</span> | ||
@else | ||
<a href="{{ $url }}" class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 hover:text-gray-500 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:text-gray-400 dark:hover:text-gray-300 dark:active:bg-gray-700 dark:focus:border-blue-800" aria-label="{{ __('Go to page :page', ['page' => $page]) }}"> | ||
{{ $page }} | ||
</a> | ||
@endif | ||
@endforeach | ||
@endif | ||
@endforeach | ||
|
||
{{-- Next Page Link --}} | ||
@if ($paginator->hasMorePages()) | ||
<a href="{{ $paginator->nextPageUrl() }}" rel="next" class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-r-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150 dark:bg-gray-800 dark:border-gray-600 dark:active:bg-gray-700 dark:focus:border-blue-800" aria-label="{{ __('pagination.next') }}"> | ||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> | ||
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" /> | ||
</svg> | ||
</a> | ||
@else | ||
<span aria-disabled="true" aria-label="{{ __('pagination.next') }}"> | ||
<span class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-r-md leading-5 dark:bg-gray-800 dark:border-gray-600" aria-hidden="true"> | ||
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> | ||
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" /> | ||
</svg> | ||
</span> | ||
</span> | ||
@endif | ||
</span> | ||
</div> | ||
</div> | ||
</nav> | ||
@endif |
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