@if (count($publishers) > 0)
@t('Publisher') | @t('Link') | @t('Status') |
---|---|---|
{{ $publisher->Publisher->name }} | {!! Form::text( 'data[Event][EventsPublisher][' . $key . '][url]', ( isset($data->Event->EventsPublisher->{$key}->url) ? $data->Event->EventsPublisher->{$key}->url : null ) ) !!} | {!! Form::select( 'data[Event][EventsPublisher][' . $key . '][status]', [ 'published' => t('Published'), 'passwords' => t('Awaiting Passwords'), 'approval' => t('Pending Approval from Publisher') ], ( isset($data->Event->EventsPublisher->{$key}->status) ? $data->Event->EventsPublisher->{$key}->status : null ) ) !!} |