diff options
| author | horus | 2019-05-13 15:32:29 +0200 |
|---|---|---|
| committer | horus | 2019-05-13 15:32:29 +0200 |
| commit | 0d4c4fbabc4469d533ca309d3342df0bb92fc4d6 (patch) | |
| tree | 0fd71bf7b03f56e34d1650e5fc8b20af81969148 /site/resources/views/fk-search.blade.php | |
| parent | 07a828530d578fd4383ff59a1446db9c6b009994 (diff) | |
| download | alkobote-0d4c4fbabc4469d533ca309d3342df0bb92fc4d6.tar.gz | |
Adds custom pagination. (site)
Diffstat (limited to 'site/resources/views/fk-search.blade.php')
| -rw-r--r-- | site/resources/views/fk-search.blade.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/site/resources/views/fk-search.blade.php b/site/resources/views/fk-search.blade.php index 457fd5c..fcb2014 100644 --- a/site/resources/views/fk-search.blade.php +++ b/site/resources/views/fk-search.blade.php @@ -15,7 +15,7 @@ Finde den besten Deal <!-- Breadcrumb NavXT 6.2.1 --> <li class="home breadcrumb-item"><span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Gehe zur Startseite: Fuselkönig.de" href="https://www.fuselkoenig.de" class="home"><span property="name">Startseite</span></a><meta property="position" content="1"></span></li> <li class="post post-angebote-archive breadcrumb-item"><span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Schau dir Angebote an." href="/angebote/" class="post post-angebote-archive"><span property="name">Angebote</span></a><meta property="position" content="2"></span></li> -<li class="archive taxonomy type current-item breadcrumb-item active" aria-current="page"><span property="itemListElement" typeof="ListItem"><span property="name">Suche nach <strong>"{{ ucfirst($search_phrase) }}"</strong></span><meta property="position" content="3"></span></li> +<li class="archive taxonomy type current-item breadcrumb-item active" aria-current="page"><span property="itemListElement" typeof="ListItem"><span property="name">Suche nach <strong>"{{ ucwords($search_phrase) }}"</strong></span><meta property="position" content="3"></span></li> </ol> </nav> </div> @@ -30,7 +30,7 @@ if ( $data->count() ) { <div class="card-body"> <h1 class="card-title page-title">Suche</h1> <p> - Sie haben nach <strong>{{ ucfirst($search_phrase) }}</strong> gesucht ({{$count->count()}} Treffer) + Sie haben nach <strong>{{ ucwords($search_phrase) }}</strong> gesucht ({{$count->count()}} Treffer) </p> @include('snippets.fk-sortbuttons') <?php @@ -39,7 +39,7 @@ if ( $data->count() ) { <div class="alert alert-error" data-track-content data-content-name="Suche" data-content-piece="Keine Angebote" data-content-target=""> <h1 class="alert-heading">Keinen Treffer</h1> <p style="font-size: 17px;"> - Leider hat Ihre Suche nach <strong>{{ $search_phrase }}</strong> keine Ergebnisse ergeben. Bitte versuchen sie es erneut mit einem anderen Begriff. + Leider hat Ihre Suche nach <strong>{{ ucwords($search_phrase) }}</strong> keine Ergebnisse ergeben. Bitte versuchen sie es erneut mit einem anderen Begriff. </p> <form action="/angebote/search"> @@ -58,13 +58,13 @@ if ( $data->count() ) { </div> </header><!-- .page-header --> - {{ $data->appends(Input::except('page'))->links() }} + {{ $data->appends(Input::except('page'))->links('paginate') }} <?php /* <div class="jumbotron p-3 p-md-5 text-white rounded bg-dark bbg-white ttext-dark box-shadow"> <div class="col-md-6 px-0"> - <h1 class="display-4 font-italic">{{ ucfirst($spirit_type) }} <span class="text-mute ml-10">({{$count}} Angebote)</span><!-- --></h1> + <h1 class="display-4 font-italic">{{ ucwords($spirit_type) }} <span class="text-mute ml-10">({{$count}} Angebote)</span><!-- --></h1> <!--p class="lead my-3">Finde immer die günstigsten Angebote im Bereich Spirituosen. Täglich neue Schnäppchen.</p--> <p class="lead mb-0"><a href="/" class="text-white font-weight-bold">Zurück zur Übersicht...</a></p> </div> @@ -96,7 +96,7 @@ foreach( $data as $offer) { <div class="card-header-dp-none"> <p><strong> <span style="visibility: hidden;"> - {{ ucfirst($offer->spirit_type) }} <span class="float-right">{{ $offer->shop }}</span> + {{ ucwords($offer->spirit_type) }} <span class="float-right">{{ $offer->shop }}</span> </span> </strong></p> </div> @@ -108,7 +108,7 @@ foreach( $data as $offer) { <div class="col-md-8 px-10"> <div class="card-header"> <p><strong> - {{ ucfirst($offer->spirit_type) }} <span class="float-right">{{ $offer->shop }}</span> + {{ ucwords($offer->spirit_type) }} <span class="float-right">{{ $offer->shop }}</span> </strong></p> </div> <div class="card-block card-body px-3"> @@ -161,7 +161,7 @@ foreach( $data as $offer) { <?php } /* -<div class="col-md-6 col-sm-12" id="{{ $offer->name }}" data-track-content data-content-name="{{ ucfirst($spirit_type) }}" data-content-piece="{{ $offer->name }}" data-content-target="{{ $offer->url }}"> +<div class="col-md-6 col-sm-12" id="{{ $offer->name }}" data-track-content data-content-name="{{ ucwords($spirit_type) }}" data-content-piece="{{ $offer->name }}" data-content-target="{{ $offer->url }}"> <div class="card flex-md-row mb-4 box-shadow h-md-250 h-sm-500"> <!-- >= md --> @@ -282,7 +282,7 @@ foreach( $data as $offer) { */ ?> - {{ $data->appends(Input::except('page'))->links() }} + {{ $data->appends(Input::except('page'))->links('paginate') }} <?php /* Ende Liste Angebote */ |
