Skip to content

Commit

Permalink
refactor(campaign): WIP - Adding new columns to campaign grid
Browse files Browse the repository at this point in the history
  • Loading branch information
gnovaro committed Dec 27, 2023
1 parent 5fc7021 commit dae1522
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/Http/Controllers/Campaign/CampaignSaveController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ public function save(Request $request)
$campaign->from = $request->from;
$campaign->body = $request->body;
$campaign->tags = !empty($request->tags) ? explode(',', $request->tags) : null;
$campaign->schedule_send_date = $request->schedule_send_date;
$campaign->schedule_send_time = $request->schedule_send_time;
$campaign->updated_at = now();
$campaign->save();

Expand Down

0 comments on commit dae1522

Please sign in to comment.