@extends('layouts.home') @section('title', 'Geschenke') @section('content')
Geschenke
@if ($canCreate)
Neue Geschenk
@endif @if($gifts->count())
@foreach($gifts as $gift) @include('gifts.partials.gift', $gift) @endforeach
# Titel Preis Bild Aktiv
@else

Keine Geschenke

@endif
@endsection @section('after-scripts') @endsection