@extends('layouts.admin')
@section('content')
@push('css')
@endpush
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)) }} |
Sl. |
Incentive name |
Target Amount |
@foreach ($incentive->incentive_events as $incentive_event)
{{$loop->iteration}} |
{{ @$incentive_event->designation->name }} |
{{ $incentive_event->target_amount }} |
@endforeach
Total |
{{ number_format($total) }} |
@push('alljs')
@endpush
@endsection