{{ __('Update Point of '. $item->first_name )}}
@csrf
{!! Form::select('type', $customerPointTypes, null,[ 'class'=>'form-control', 'placeholder' => 'Select Type', 'required'=>'required']) !!}
Type is Required
{!! Form::select('points_type', $pointTypes, null,[ 'class'=>'form-control', 'placeholder' => 'Select Point Type', 'required'=>'required']) !!}
Point Type is Required
Points is Required
Message is Required
@foreach($pointTransactions as $pointTransaction) @endforeach
{{ __('Transaction ID')}} {{ __('Customer')}} {{ __('Order ID')}} {{ __('Points')}} {{ __('Points Type')}} {{ __('Old Balance')}} {{ __('New Balance')}}
{{ $pointTransaction->entity_id}} {{ $pointTransaction->customer->first_name . " " . $pointTransaction->customer->last_name}} {{ $pointTransaction->order_id}} {{ $pointTransaction->points}} {{ $pointTransaction->points_type}} {{ $pointTransaction->old_balance}} {{ $pointTransaction->new_balance}}