@if (count($publishers) > 0)
@t('Publisher') | @t('Link') | @t('Status') |
---|---|---|
{{ $publisher->Publisher->name }} |
{!! Form::text(
'data[EventsPublisher][' . $publisher->id . '][url]',
(isset($publisher->url) ? $publisher->url : null)
) !!}
@if ($publisher->extra)
@t('Publish on:')
@if ($publisher->extra->date)
@date($publisher->extra->date)
@else
@t('ASAP')
@endif
@t('Publish time:')
@if ($publisher->extra->time)
@date($publisher->extra->time)
@else
@t('Any time')
@endif
@if ($publisher->extra->caption)
@t('Caption:')
{{ $publisher->extra->caption }}
@endif
@if ($publisher->extra->tags)
@t('Tags:')
{{ $publisher->extra->tags }}
@endif
@endif
|
{!! Form::select( 'data[EventsPublisher][' . $publisher->id . '][status]', [ 'pending' => t('Pending'), 'published' => t('Published'), 'passwords' => t('Awaiting Passwords'), 'approval' => t('Pending Approval from Publisher') ], (isset($publisher->status) ? $publisher->status : null) ) !!} |