@extends('layouts.app') @section('title', 'Welcome') @section('content')
{{--
Jutti
Punjabi Jutti 23
Flory 46
Pearl 13
--}}
Categories
--
@foreach($categories as $cat)
{{--
--}} {{ $cat->name }}
@endforeach
{{--
Type
--
23
24
--}}
@if($category->items->count() > 0) @foreach($category->items as $item)
{{-- -25% OFF --}}
{{ $item->name }}
${{ $item->price }}
{{--
--}} @if(auth()->check()) @if(!\Cart::session(auth()->user()->id)->get($item->id))
@csrf
@else @endif @else Login @endif
@endforeach @else

No items

@endif
@endsection