@extends('shops.layout') @section('shops-title') Donation Shop @endsection @section('shops-content') {!! breadcrumbs(['Shops' => 'shops', 'Donation Shop' => 'shops/donation-shop']) !!}

Donation Shop

{!! $text->parsed_text !!}

@if (Auth::check() && Auth::user()->donationShopCooldown) You can collect an item {!! pretty_date(Auth::user()->donationShopCooldown) !!}! @endif
@foreach ($items as $categoryId => $categoryItems)
{!! isset($categories[$categoryId]) ? '' . $categories[$categoryId]->name . '' : 'Miscellaneous' !!}
@foreach ($categoryItems->chunk(4) as $chunk)
@foreach ($chunk as $item)
{{ $item->item->name }}
Stock: {{ $item->stock }}
@endforeach
@endforeach
@endforeach @endsection @section('scripts') @endsection