init
All checks were successful
Deploy to Production / deploy (push) Successful in 16s

This commit is contained in:
梁朝伟 2024-11-14 10:33:57 +08:00
parent ba69330d24
commit 2b59b0ec7e
2 changed files with 33 additions and 1 deletions

View File

@ -2,6 +2,7 @@
namespace BYDAuto\Jobs; namespace BYDAuto\Jobs;
use BYDAuto\Models\Activity;
use BYDAuto\Models\Contact; use BYDAuto\Models\Contact;
use BYDAuto\Models\Testdrive; use BYDAuto\Models\Testdrive;
use BYDAuto\Notifications\TestdirveNotification; use BYDAuto\Notifications\TestdirveNotification;
@ -32,6 +33,14 @@ public function sendNotification()
{ {
$message = new TestdirveNotification($this->model); $message = new TestdirveNotification($this->model);
$contacts = Contact::query()->where('status', Contact::STATUS_PUBLISHED)->get(); $contacts = Contact::query()->where('status', Contact::STATUS_PUBLISHED)->get();
$contacts->each(fn(Contact $contact) => $contact->notify($message)); // $contacts->each(fn(Contact $contact) => $contact->notify($message));
$contact = $contacts->random();
$contact->notify($message);
Activity::create([
'name' => '试驾通知',
'content' => ['testdrive' => $this->model->id, 'contact' => $contact->id],
'related_id' => $this->model->id,
'related_type' => Testdrive::class,
]);
} }
} }

View File

@ -0,0 +1,23 @@
<?php
namespace BYDAuto\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Activity
*
* @property int id
* @property string name
* @property array content
* @property int related_id
* @property string related_type
*/
class Activity extends Model
{
public const CREATED_AT = 'date_created';
public const UPDATED_AT = 'date_updated';
protected $table = 'bydauto_activity';
protected $fillable = ['name', 'content', 'related_id', 'related_type'];
protected $casts = ['content' => 'json'];
}