<div class="col-md-12">
    <table class="table table-striped table-bordered table-hover" id="history-table">
        <thead>
        <tr>
            <th>Số tiền</th>
            <th>Thời gian</th>
        </tr>
        </thead>
        <tbody>
        @foreach($items as $item)
        <tr>

                <td>{{ number_format($item->amount, 0, '.', '.') }}</td>
                <td>{{ $item->created_at->format('d/m/Y') }}</td>

        </tr>
        @endforeach
        </tbody>
    </table>
</div>