@extends('layouts.admin.app') @section('title', translate('Point History')) @push('css_or_js') @endpush @section('content')

{{-- --}} {{ translate('Point History') }}

{{ $transition->total() }}
{{-- --}} @foreach ($transition as $key => $trans) {{-- --}} {{-- --}} @endforeach
{{ translate('SL') }} {{ translate('transaction') }} {{ translate('id') }} {{ translate('user') }} {{ translate('name') }} {{ translate('credit') }} {{ translate('debit') }}{{translate('description')}}{{ translate('balance') }} {{ translate('transaction_type') }} {{ translate('created_at') }}
{{ $transition->firstitem() + $key }} {{ $trans->transaction_id }} {{ Str::limit($trans->customer ? $trans->customer->f_name . ' ' . $trans->customer->l_name : translate('not_found'), 20, '...') }} {{ $trans->credit }} {{ $trans->debit }} {{ $trans->amount }} {{ translate($trans->type) }} --}} {{--
{{$trans->description}}
--}} {{--
--}} {{-- @if ($trans->type == 'point_in') --}} {{-- --}} {{-- @else --}} {{-- --}} {{-- @endif --}} {{-- {{ date('Y/m/d ' . config('timeformat'), strtotime($trans->created_at)) }}
{!! $transition->links() !!}
@endsection @push('script_2') @endpush