@extends('member.layouts.default') @section('page_title', config('default.app_name')) @section('content')
@if (!$cards || $cards->isEmpty())
{{ trans('common.no_cards_collected_yet') }}
@if(!auth('member')->check())
{!! trans('common.or_log_in_to_view', ['link' => '' . trans('common._log_in_') . '']) !!}
@endif
@else @foreach($cards as $card) @endforeach @endif
@stop