@extends('layouts.admin') @section('content') @push('css') @endpush
Incentive Details
Incentive Name : {{ $incentive->incentive_name }}
Start Date : {{ date('d-m-Y', strtotime($incentive->start_date)) }}
End Date : {{ date('d-m-Y', strtotime($incentive->end_date)) }}

@foreach ($incentive->incentive_events as $incentive_event) @endforeach
Sl. Incentive name Target Amount
{{$loop->iteration}} {{ @$incentive_event->designation->name }} {{ $incentive_event->target_amount }}
Total   {{ number_format($total) }}
@push('alljs') @endpush @endsection