migrations fix
This commit is contained in:
parent
7d1cf2d544
commit
b10a89f4d0
|
|
@ -64,7 +64,6 @@
|
|||
'upload_failure' => 'File upload failed',
|
||||
'upload_max_size' => 'Max size exceeded',
|
||||
'created_at' => 'Created at',
|
||||
|
||||
'accept_application' => 'Accepted application',
|
||||
'approve' => 'Approve',
|
||||
'accepted' => 'Accepted',
|
||||
|
|
@ -73,7 +72,9 @@
|
|||
'size' => 'Size (kb)',
|
||||
'type' => 'Type',
|
||||
'profile_type' => 'Profile type',
|
||||
'profile' => 'Profile'
|
||||
'profile' => 'Profile',
|
||||
|
||||
'draft' => "Draft",
|
||||
],
|
||||
'dashboard' => [
|
||||
'title' => 'Dashboard',
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
<h5>
|
||||
@if ($entry['state'] == 'new')
|
||||
<span class="badge badge-success">{{ trans('app.application.new') }}</span>
|
||||
@elseif($entry['state'] == 'applied')
|
||||
<span class="badge badge-info">{{ trans('app.application.applied') }}</span>
|
||||
@elseif($entry['state'] == 'accepted')
|
||||
<span class="badge badge-info">{{ trans('app.application.accepted') }}</span>
|
||||
@elseif($entry['state'] == 'approved')
|
||||
<span class="badge badge-primary">{{ trans('app.application.approved') }}</span>
|
||||
@elseif($entry['state'] == 'archive')
|
||||
<span class="badge badge-secondary">{{ trans('app.application.archived') }}</span>
|
||||
@elseif($entry['state'] == 'draft')
|
||||
<span class="badge badge-default">{{ trans('app.application.draft') }}</span>
|
||||
@endif
|
||||
</h5>
|
||||
|
|
|
|||
Loading…
Reference in New Issue