@extends('layouts.admin.app') @section('title', translate('Point History')) @push('css_or_js') @endpush @section('content')
{{ 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)) }} |