@extends('layouts.default') @section('title', 'Incentive Requests List') @section('header-links') @include('includes.headers.incentives') @endsection @section('new_button') add Create Incentive @endsection @section('content')
@if(count($list) > 1) @foreach($list as $k=>$li) @endforeach @else @endif
User Consultant Type Amount Status
{!! $li->user?->name !!} {!! $li->consultant?->name !!} {!! $incentiveTypes[$li->type] !!} {{ number_format($li->amount, 2) }} {!! Form::select('status', $statuses, $li->status, ['class'=>'selectpicker', 'onchange'=>'statusChange($(this), '.$li->id.')']) !!}
No data
@stop