1 | <?php namespace JobApis\JobsToMail\Models; |
||
5 | class CustomDatabaseNotification extends DatabaseNotification |
||
6 | { |
||
7 | /** |
||
8 | * Defines the relationship to Search model |
||
9 | * |
||
10 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
11 | */ |
||
12 | 1 | public function search() |
|
16 | |||
17 | /** |
||
18 | * Overrides the save method so that search IDs can be added to the Notification |
||
19 | * in the database |
||
20 | * |
||
21 | * @param array $options |
||
22 | */ |
||
23 | 2 | public function save(array $options = []) |
|
33 | } |
||
34 |