@extends("layouts.admin.app") @section("page-title") {{__("users-points")}} @endSection @section("page-nav-title")
{{__("all-users-points")}}
# | {{ __('Type Transaction') }} | {{ __('Movement') }} | {{ __('Value') }} | @if (isset($request)){{ __('Balanced') }} | @endif{{ __('User') }} | {{ __('Created at') }} | |
---|---|---|---|---|---|---|---|
{{ ++$serial}} | {{ $point->type }} | @if ($point->in_out == -1){{ __('discount') }} | @elseif($point->in_out == 1){{ __('addition') }} | @endif{{ number_format($point->value, 2) . ' IQD' }} | @if (isset($request)){{ number_format($point->balance, 2) . ' IQD' }} | @endif{{ $point->user->first_name ." " . $point->user->last_name}} | {{ date('d/m/Y h:i A', strtotime($point->created_at)) }} |
{{ __('Total') }} | {{ number_format($balanced, 2) . ' RS' }} |