{{-- * @description Char-Bazaar - Venda de personagens * @author Rickson Kauê * @date Data de criação 05/12/2023 * @version 1.0 * @copyright (c) Ravenor * @email ricksonkaue04@gmail.com --}} @extends('template.layout') @section('title', 'Bazaar History') @section('submenuItem', 'bazaarHistory') @section('content')
Bazaar History
@if(empty($history) || count($history) == 0) @else @foreach($history as $entry) @php $playerName = $entry['player_name'] @endphp @endforeach @endif
Player Name Coins Method Date
No history records found.
@if($entry['player_name']) {{ $playerName }} @else No register @endif {{ $entry['coins'] }} Market {{ \Carbon\Carbon::parse($entry['date'])->format('d/m/Y H:i') }}
@endsection