@use('\Illuminate\Support\Number', 'Number') @use('\Illuminate\Support\Str', 'Str') Manage crypto assets
@if (!$addNew && !$edit)
@foreach ($currencies as $item) @endforeach
Currency Symbol Price To USD($) Status Action
{{ $item->name }} {{ $item->symbol }} 1 {{ $item->symbol }} = ${{ $item->price_in_usd }} @if ($item->is_default && $settings->use_api_price_for_swap) Price from API @endif @if ($item->status == 'active') Enabled @else Disabled @endif @if ($item->status == 'active') Disable @else Enable @endif
{{ $currencies->links() }}
Be sure your users do not have money in thier accounts before you disable or delete the currency.
@endif @if ($addNew) @include('livewire.admin.crypto-swap.add') @endif @if ($edit) @include('livewire.admin.crypto-swap.edit') @endif