@extends('layouts.master') @section('title') @lang('translation.wallet') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') @lang('translation.digital-assets') @endslot @slot('title') @lang('translation.wallet') @endslot @endcomponent @include('partials.session')

0

Total Cash
@if($wallets->isEmpty())
You don't have any assets. Please buy some from the store.
@else @foreach($wallets as $wallet)
@if($wallet->digitalAsset) @else @endif

0

{{ $wallet->digitalAsset->name ?? 'Unknown Asset' }}
@endforeach @endif
{{-- @if(!$wallets->isEmpty())--}} {{--
--}} {{--
--}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- @foreach($wallets as $wallet)--}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- @endforeach--}} {{-- --}} {{--
ProductQuantity
--}} {{--
--}} {{-- {{ $wallet->digitalAsset->name ?? 'Unknown Asset' }}--}} {{--
--}} {{--
{{ $wallet->quantity }}
--}} {{--
--}} {{--
--}} {{-- @endif--}} @endsection @section('script') @endsection