{{--
* @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')
| Player Name |
Coins |
Method |
Date |
@if(empty($history) || count($history) == 0)
| No history records found. |
@else
@foreach($history as $entry)
@php $playerName = $entry['player_name'] @endphp
|
@if($entry['player_name'])
{{ $playerName }}
@else
No register
@endif
|
{{ $entry['coins'] }} |
Market |
{{ \Carbon\Carbon::parse($entry['date'])->format('d/m/Y H:i') }} |
@endforeach
@endif
|
|
@endsection