@extends('layouts.master') @section('title') @lang('Crypto Wallets') @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') @lang('translation.users') @endslot @slot('title') @lang('translation.list') @endslot @endcomponent @include('partials.session')
@foreach ($wallets as $wallet) @endforeach
ID Coin Ticker Coin Name Coin ID Status Actions
{{ $wallet->id }} {{ $wallet->coin }} {{ $wallet->label }} @if ($wallet->wallet_id == null || $wallet->wallet_id == $wallet->coin) Generate Wallet ID @else {{ $wallet->wallet_id }} @endif {{ ucfirst($wallet->status) }}
@endsection @section('script') @endsection