@extends('admin.layouts.app') @section('content')

{{__("Claim Management")}}

@include('admin.message')
@if(!empty($rows))
{{csrf_field()}}
@endif
@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __('User')}} {{ __('Code')}} {{ __('Category')}} {{ __('Updated By')}} {{ __('Status')}}
@if($row->status == config('constant.user_reward_status.active')) @endif {{$row->user->name}} {{$row->code}} {{config('constant.reward_category.'.$row->category)}} {{$row->updatedBy->name}} @php $badge = "danger"; if($row->status == config('constant.user_reward_status.active')) { $badge = "success"; } @endphp {{ $row->status }} {{-- {{__('Edit')}} --}}
{{__("No Claim found")}}
{{$rows->appends(request()->query())->links()}}

{{__('Found :total items',['total'=>$rows->total()])}}

@endsection