Lists

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Your Lists

@if(!$lists->isEmpty())

    @foreach($lists as $list)
  • {{$list->name}} @if((bool)$list->is_public === true) @else @endif

  • @endforeach
@else No lists found. @endif

Shared With You

@if(!$sharedLists->isEmpty())

    @foreach($sharedLists as $list)
  • {{$list->name}} @if((bool)$list->is_public === true) @else @endif

  • @endforeach
@else No lists found. @endif