@extends('layouts.master') @section('title') @lang('translation.market-place') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') @lang('translation.market-place') @endslot @slot('title') GC7 Store @endslot @endcomponent @include('partials.session')
@php $key = App\Models\GeneralSettings::PURCHASE_SOUND; $settings = App\Models\GeneralSettings::where('key', $key)->first(); // If the sound is set in the settings table, use it, otherwise use the default sound $sound = $settings ? asset($settings->value) : asset('default_assets/sounds/coin.mp3'); @endphp @foreach ($assets as $asset)
@if($asset->label)
{{ $asset->label ?? ''}}
@endif {{ $asset->name }}
{{ $asset->name }}
@if(isset($showQuantity->value) && $showQuantity->value == 1)

Quantity: {{ $asset->quantity }}

@endif
@endforeach
@endsection @section('script')