From 7149647b729b2aa30d76346a7cc3da37c1c692ca Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 13 May 2019 15:50:36 +0200 Subject: Initial commit. --- resources/views/search.blade.php | 175 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 resources/views/search.blade.php (limited to 'resources/views/search.blade.php') diff --git a/resources/views/search.blade.php b/resources/views/search.blade.php new file mode 100644 index 0000000..2f381d7 --- /dev/null +++ b/resources/views/search.blade.php @@ -0,0 +1,175 @@ +@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') +
+ +
+ +
+ + + + {{ $data->appends(Input::except('page'))->links('paginate') }} + +count() ) { + /* Keine Angebote */ +?> + + + + + + +
+
+
+
+

+ + {{ ucwords($offer->spirit_type) }} {{ $offer->shop }} + +

+
+
+

{{ $offer->procent}} %

+
+ +
+
+
+

+ {{ ucwords($offer->spirit_type) }} {{ $offer->shop }} +

+
+
+ +

{{ $offer->name }}

+ +
+

+ Neuer Preis: {{ TF::fF($offer->discounted_price) }} € +
+ statt {{ TF::fF($offer->original_price) }} € +
+ {{ TF::fF($offer->base_price ) }} € / Liter +

+

+ Alkohol: {{ TF::fF($offer->abv) }} % +
+ Volumen: {{ TF::fF($offer->volume) }} Liter +
+ Versand: {{ TF::fF($offer->shipping_costs) }} € +
+
+

+
+
+ +
+ +
+
+ + + + {{ $data->appends(Input::except('page'))->links('paginate') }} + + + + +
+ +@endsection + +@section('scripts') + +@endsection -- cgit v1.2.3