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/offer.blade.php | 167 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 167 insertions(+) create mode 100644 resources/views/offer.blade.php (limited to 'resources/views/offer.blade.php') diff --git a/resources/views/offer.blade.php b/resources/views/offer.blade.php new file mode 100644 index 0000000..636f4ce --- /dev/null +++ b/resources/views/offer.blade.php @@ -0,0 +1,167 @@ +@extends('layouts.base') + +@section('header') +{{ ucwords($title) }} +@endsection + +@section('feed') + {!! Feed::link(secure_url($rss_feed) . "/", 'atom', 'Feed von ' . ucwords($spirit_type) . '-Angeboten', 'de') !!} +@endsection + +@section('content') +
+ +
+ +
+ +
+ + + + {{ $data->appends(Input::except('page'))->links('paginate') }} + +count() ) { + /* Keine Angebote */ +?> +
+

Keine Angebote

+ Momentan liegen keine {{ $title }} vor. Probieren Sie es später noch einmal. +
+ + + + + + +
+
+
+
+

+ + {{ 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