Skip to content

Commit

Permalink
refactor(campaign): WIP - Adding status column
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Dec 27, 2023
1 parent 306ef60 commit c43e86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/campaign/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<td>{{ $campaign->updated_at }}</td>
<td>{{ $campaign->schedule_send_date }}</td>
<td>{{ $campaign->schedule_send_time }}</td>
<td>{{ $campaign->send_at }}</td>
<td>{{ (isset($campaign->send_at)) ? $campaign->send_at : '-' }}</td>
<td>{{ (isset($campaign->emails_count)) ? $campaign->emails_count : '-' }}</td>
<td>
{{ (isset($campaign->status)) ? __($campaign->status) : __('Draft') }}
Expand Down

0 comments on commit c43e86a

Please sign in to comment.