@extends('layouts.app') @section('title', 'Customer Points - ' . $customer->full_name) @section('content')
| Date | Points Change | Reason | Added By |
|---|---|---|---|
| {{ $point->created_at->format('Y-m-d H:i') }} | @if($point->change > 0) +{{ $point->change }} @else {{ $point->change }} @endif | {{ $point->reason }} | @if($point->creator) {{ $point->creator->name }} @else System @endif |
| No points history found | |||