@extends('Employee.layout') @section('title',"Claim Points") @section('page-name',"Employee Point") @section('page-detail',"All Points Information") {{--@section('pagelink', 'dashboard')--}} @section('body')
| VIN# | Target/Product | Points | Claimed Date | Status | Detail |
|---|---|---|---|---|---|
| {{ $point->vin_no }} | {{ $name }} | {{ $point->points }} | {{ \Carbon\Carbon::parse($point->created_at)->format('m-d-y') }} | @if($point->status === 'Redeemed') Redeemed @elseif($point->status === 'Rejected') Rejected @else Pending @endif | @if($point->status === 'Rejected') @else N/A @endif |