@if (count($revenue_targets_periods))
No.
@lang("content.from")
@lang("content.to")
Target
Accountable
@lang("content.actions")
@foreach($revenue_targets_periods as $i => $each) @php $picture = !is_null($each->thumb) ? $each->thumb : 'profile.png'; @endphp @php $user = $each->organization ? $each->organization->user : null @endphp
{{ $i + 1 }}
{{ baseDateFormat($each->period_from) }}
{{ baseDateFormat($each->period_to) }}
{{ number_format($each->target)." ".$each->currency->code }}
@if ($user)
{{ $user->first_name.' '.$user->last_name }}
@endif
{!! Form::open(['method' => 'DELETE', 'class' => 'form-horizontal', 'url' => url("/revenue-target-period/{$each->id}") , 'id' => 'formDeletePeriod']) !!} id}/edit") }}" class="btn btn-warning">@lang("content.edit") {!! Form::submit('Delete', [ 'name' => 'delete', 'class' => 'btn btn-danger']) !!} {!! Form::close() !!}
@endforeach
@endif