@extends('admin.layouts.app') @section('title', 'Points Log') @section('content')

Points Log

@include('admin.point_logs.filters')
@forelse ($logs as $log) @empty @endforelse
# Points Type Website Status Date
{{ $loop->iteration }} {{ $log->points }} {{ Str::of($log->type)->replace('_', ' ')->title() }} {{ $log?->ecommerceWebsite?->name ?? 'N/A' }} {{ $log->status }} {{ $log->created_at->format('d-M-Y h:i A') }}
No records found.
@endsection