@extends('layouts.main') @section('title', 'Customer Points Transaction') @section('content') @push('head') @endpush
@include('include.message')
@can('create-customer-points-transaction') @endcan
@csrf
{!! Form::select('points_types[]', $pointsTypeList, null,[ 'class'=>'form-control select2', 'multiple' => true]) !!}
{!! Form::select('action_sources[]', $actionSourceList, null,[ 'class'=>'form-control select2', 'multiple' => true]) !!}
{{ __('Transaction ID')}} {{ __('Customer')}} {{ __('Order ID')}} {{ __('Reward ID')}} {{ __('Points')}} {{ __('Points Type')}} {{ __('Old Balance')}} {{ __('New Balance')}} {{ __('Message')}} {{ __('Created At')}} {{ __('Action Source')}}
@canany(['bulk-delete-customer-points-transaction', 'bulk-restore-customer-points-transaction'])
@endcan
@push('script') @endpush @endsection