Skip to content

Commit

Permalink
refactor(campaign): WIP - Adding schedule columns, send button
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Dec 27, 2023
1 parent dae1522 commit 417eec2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions resources/views/campaign/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
</td>
<td>{{ $campaign->created_at }}</td>
<td>{{ $campaign->updated_at }}</td>
<td>{{ $campaign->schedule_date }}</td>
<td>{{ $campaign->schedule_date }}</td>
<td>{{ $campaign->schedule_send_date }}</td>
<td>{{ $campaign->schedule_send_time }}</td>
<td>{{ $campaign->send_at }}</td>
<td>{{ (isset($campaign->emails_count)) ? $campaign->emails_count : '-' }}</td>
<td>
Expand All @@ -56,6 +56,9 @@
<a onclick="Campaign.delete({{ $campaign->id }}, '{{ $campaign->subject }}');" title="{{ __('Delete') }}" class="btn btn-xs btn-danger">
<i class="las la-trash-alt"></i>
</a>
<a onclick="Campaign.send({{ $campaign->id }}, '{{ $campaign->subject }}')" title="{{ __('Send') }}" class="btn btn-primary">
<i class="las la-play-circle"></i>
</a>
</td>
</tr>
@endforeach
Expand Down

0 comments on commit 417eec2

Please sign in to comment.