@extends('Manager.layout') @section('title',"Targets") @section('page-name',$department->name. " Department") @section('page-detail',"All Assigned Targets Information") {{--@section('pagelink', 'target')--}} @section('body')
| Name & Product | Progress | Total Quantity | Redeemed Points | Target Points |
|---|---|---|---|---|
@if($target->custom == null)
{{$target->name}}@else{{$target->custom}}@endif |
@php
$percent = calculatePercentage($target->progress, $target->quantity);
@endphp
{{$percent['value']}}% {{$percent['status']}} |
{{$target->quantity}} | {{$target->progress ?? '0'}} |
Until: {{ \Carbon\Carbon::parse($target->last_date)->format('M d, Y') }}
{{$target->quantity - $target->progress}} |
Updated at: {{$currentDate}}
| Target/Product | Total Points | Redeemed | Last Date | Status | Action | |
|---|---|---|---|---|---|---|
| {{ $products->firstWhere('id', $target->product_id)->name }} | @else{{ Str::limit($target->custom ?? 'No Custom', 50) }} | @endif{{ $target->quantity }} | {{ $target->progress ?? "Nothing Yet" }} | {{ \Carbon\Carbon::parse($target->last_date)->format('m-d-y') }} | @if($target->status === '2') Active @elseif($target->status === '1') Inactive @else Pending @endif |