blob: 0481726cef3bb88a462a80c03e720fc7140c134a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
@extends('layouts.base')
@section('header')
Finde den besten Deal
@endsection
@section('feed')
{!! Feed::link(secure_url($rss_feed), 'atom', 'Feed von ' . $search_phrase , 'de') !!}
@endsection
@section('content')
@include('snippets.breadcrumbs')
<div class="container">
<header class="page-header">
@if ( ! $data->count() )
<!-- Keine Ergebnisse -->
<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>{{ ucwords($search_phrase) }}</strong> keine Ergebnisse ergeben. Bitte versuchen sie es erneut mit einem anderen Begriff.
</p>
<form action="{{ route('angebote_search') }}">
<div class="form-group">
<label for=""></label>
<input type="text" class="form-control" name="q" id="front_search_form" aria-describedby="suchform-help" placeholder="Hier nach der gewünschten Spirituose suchen...">
<p id="front_search_help" class="form-text">Suche zum Beispiel nach Glenfiddich oder Champagner.</p>
</div>
<button type="submit" class="btn btn-secondary">Suchen</button>
</form>
<p style="margin-top: 26px;">
Oder suchen Sie nach Kategorien:
</p>
@include('snippets.spirittypesbuttons')
</div>
</div>
</header><!-- .page-header -->
@else
<!-- Suchergebnisse -->
<div class="card taxonomy-card">
<div class="card-body">
<h1 class="card-title page-title">{{ $title }}</h1>
<p>
Sie haben nach <strong>{{ ucwords($search_phrase) }}</strong> gesucht ({{$count}} Treffer)
</p>
@include('snippets.filterbuttons')
</div>
</header><!-- .page-header -->
@include('snippets.spirittypesbuttons')
{{ $data->appends(Request::except('page'))->links('paginate') }}
@include('offers')
{{ $data->appends(Request::except('page'))->links('paginate') }}
<!-- /* Ende Liste Angebote */ -->
<!-- ./container -->
</div>
@endif
@endsection
|