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

Reward Details

Back to List
@if($pointReward->photo) {{ $pointReward->reward }} @else
No Photo Available
@endif
Reward Name {{ $pointReward->reward }}
Points Required {{ number_format($pointReward->points) }} Points
Created At {{ $pointReward->created_at->format('M d, Y H:i A') }}
Last Updated {{ $pointReward->updated_at->format('M d, Y H:i A') }}
@if(auth('admin')->user()?->can('update point rewards')) Edit Reward @endif @if(auth('admin')->user()?->can('delete point rewards'))
@csrf @method('DELETE')
@endif
@endsection