@@ -20,7 +20,7 @@ |
||
| 20 | 20 | $table->unique(array('device_token', 'user_id')); |
| 21 | 21 | $table->softDeletes(); |
| 22 | 22 | $table->timestamps(); |
| 23 | - }); |
|
| 23 | + }); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('push_notifications_devices', function (Blueprint $table) { |
|
| 15 | + Schema::create('push_notifications_devices', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | 17 | $table->string('device_token'); |
| 18 | 18 | $table->integer('user_id'); |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $factory->define(App\Modules\Notifications\Notification::class, function (Faker\Generator $faker) { |
| 4 | - return [ |
|
| 4 | + return [ |
|
| 5 | 5 | 'type' => '', |
| 6 | 6 | 'notifiable_type' => '', |
| 7 | 7 | 'notifiable_id' => '', |
@@ -9,5 +9,5 @@ discard block |
||
| 9 | 9 | 'read_at' => null, |
| 10 | 10 | 'created_at' => $faker->dateTimeBetween('-1 years', 'now'), |
| 11 | 11 | 'updated_at' => $faker->dateTimeBetween('-1 years', 'now') |
| 12 | - ]; |
|
| 12 | + ]; |
|
| 13 | 13 | }); |
| 14 | 14 | \ No newline at end of file |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -$factory->define(App\Modules\Notifications\Notification::class, function (Faker\Generator $faker) { |
|
| 3 | +$factory->define(App\Modules\Notifications\Notification::class, function(Faker\Generator $faker) { |
|
| 4 | 4 | return [ |
| 5 | 5 | 'type' => '', |
| 6 | 6 | 'notifiable_type' => '', |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | $factory->define(App\Modules\Notifications\PushNotificationDevice::class, function (Faker\Generator $faker) { |
| 4 | - return [ |
|
| 4 | + return [ |
|
| 5 | 5 | 'device_token' => $faker->sha1(), |
| 6 | 6 | 'user_id' => $faker->randomDigitNotNull(), |
| 7 | 7 | 'created_at' => $faker->dateTimeBetween('-1 years', 'now'), |
| 8 | 8 | 'updated_at' => $faker->dateTimeBetween('-1 years', 'now') |
| 9 | - ]; |
|
| 9 | + ]; |
|
| 10 | 10 | }); |
| 11 | 11 | \ No newline at end of file |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -$factory->define(App\Modules\Notifications\PushNotificationDevice::class, function (Faker\Generator $faker) { |
|
| 3 | +$factory->define(App\Modules\Notifications\PushNotificationDevice::class, function(Faker\Generator $faker) { |
|
| 4 | 4 | return [ |
| 5 | 5 | 'device_token' => $faker->sha1(), |
| 6 | 6 | 'user_id' => $faker->randomDigitNotNull(), |
@@ -5,23 +5,23 @@ |
||
| 5 | 5 | |
| 6 | 6 | class Notification extends DatabaseNotification{ |
| 7 | 7 | |
| 8 | - public function getCreatedAtAttribute($value) |
|
| 9 | - { |
|
| 10 | - return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
| 11 | - } |
|
| 8 | + public function getCreatedAtAttribute($value) |
|
| 9 | + { |
|
| 10 | + return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
| 11 | + } |
|
| 12 | 12 | |
| 13 | - public function getUpdatedAtAttribute($value) |
|
| 14 | - { |
|
| 15 | - return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
| 16 | - } |
|
| 13 | + public function getUpdatedAtAttribute($value) |
|
| 14 | + { |
|
| 15 | + return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
| 16 | + } |
|
| 17 | 17 | |
| 18 | - public function getDeletedAtAttribute($value) |
|
| 19 | - { |
|
| 20 | - return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
| 21 | - } |
|
| 18 | + public function getDeletedAtAttribute($value) |
|
| 19 | + { |
|
| 20 | + return \Carbon\Carbon::parse($value)->tz(\Session::get('time-zone'))->toDateTimeString(); |
|
| 21 | + } |
|
| 22 | 22 | |
| 23 | - public function getReadAtAttribute($value) |
|
| 24 | - { |
|
| 25 | - return ! $value ? false : \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
| 26 | - } |
|
| 23 | + public function getReadAtAttribute($value) |
|
| 24 | + { |
|
| 25 | + return ! $value ? false : \Carbon\Carbon::parse($value)->addHours(\Session::get('timeZoneDiff'))->toDateTimeString(); |
|
| 26 | + } |
|
| 27 | 27 | } |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | use Illuminate\Notifications\DatabaseNotification; |
| 4 | 4 | use Illuminate\Database\Eloquent\SoftDeletes; |
| 5 | 5 | |
| 6 | -class Notification extends DatabaseNotification{ |
|
| 6 | +class Notification extends DatabaseNotification { |
|
| 7 | 7 | |
| 8 | 8 | public function getCreatedAtAttribute($value) |
| 9 | 9 | { |
@@ -7,42 +7,42 @@ |
||
| 7 | 7 | |
| 8 | 8 | class PushNotificationsDevicesController extends BaseApiController |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * The name of the model that is used by the base api controller |
|
| 12 | - * to preform actions like (add, edit ... etc). |
|
| 13 | - * @var string |
|
| 14 | - */ |
|
| 15 | - protected $model = 'pushNotificationDevices'; |
|
| 10 | + /** |
|
| 11 | + * The name of the model that is used by the base api controller |
|
| 12 | + * to preform actions like (add, edit ... etc). |
|
| 13 | + * @var string |
|
| 14 | + */ |
|
| 15 | + protected $model = 'pushNotificationDevices'; |
|
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * List of all route actions that the base api controller |
|
| 19 | - * will skip permissions check for them. |
|
| 20 | - * @var array |
|
| 21 | - */ |
|
| 22 | - protected $skipPermissionCheck = ['registerDevice']; |
|
| 17 | + /** |
|
| 18 | + * List of all route actions that the base api controller |
|
| 19 | + * will skip permissions check for them. |
|
| 20 | + * @var array |
|
| 21 | + */ |
|
| 22 | + protected $skipPermissionCheck = ['registerDevice']; |
|
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * The validations rules used by the base api controller |
|
| 26 | - * to check before add. |
|
| 27 | - * @var array |
|
| 28 | - */ |
|
| 29 | - protected $validationRules = [ |
|
| 30 | - 'device_token' => 'required|string|max:255', |
|
| 31 | - 'user_id' => 'required|exists:users,id' |
|
| 32 | - ]; |
|
| 24 | + /** |
|
| 25 | + * The validations rules used by the base api controller |
|
| 26 | + * to check before add. |
|
| 27 | + * @var array |
|
| 28 | + */ |
|
| 29 | + protected $validationRules = [ |
|
| 30 | + 'device_token' => 'required|string|max:255', |
|
| 31 | + 'user_id' => 'required|exists:users,id' |
|
| 32 | + ]; |
|
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * Register the given device to the logged in user. |
|
| 36 | - * |
|
| 37 | - * @param \Illuminate\Http\Request $request |
|
| 38 | - * @return \Illuminate\Http\Response |
|
| 39 | - */ |
|
| 40 | - public function registerDevice(Request $request) |
|
| 41 | - { |
|
| 42 | - $this->validate($request, [ |
|
| 43 | - 'device_token' => 'required|string|max:255' |
|
| 44 | - ]); |
|
| 34 | + /** |
|
| 35 | + * Register the given device to the logged in user. |
|
| 36 | + * |
|
| 37 | + * @param \Illuminate\Http\Request $request |
|
| 38 | + * @return \Illuminate\Http\Response |
|
| 39 | + */ |
|
| 40 | + public function registerDevice(Request $request) |
|
| 41 | + { |
|
| 42 | + $this->validate($request, [ |
|
| 43 | + 'device_token' => 'required|string|max:255' |
|
| 44 | + ]); |
|
| 45 | 45 | |
| 46 | - return \Response::json($this->repo->registerDevice($request->all()), 200); |
|
| 47 | - } |
|
| 46 | + return \Response::json($this->repo->registerDevice($request->all()), 200); |
|
| 47 | + } |
|
| 48 | 48 | } |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | * to preform actions like (add, edit ... etc). |
| 13 | 13 | * @var string |
| 14 | 14 | */ |
| 15 | - protected $model = 'pushNotificationDevices'; |
|
| 15 | + protected $model = 'pushNotificationDevices'; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * List of all route actions that the base api controller |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | * to check before add. |
| 27 | 27 | * @var array |
| 28 | 28 | */ |
| 29 | - protected $validationRules = [ |
|
| 29 | + protected $validationRules = [ |
|
| 30 | 30 | 'device_token' => 'required|string|max:255', |
| 31 | 31 | 'user_id' => 'required|exists:users,id' |
| 32 | 32 | ]; |
@@ -7,60 +7,60 @@ |
||
| 7 | 7 | |
| 8 | 8 | class NotificationsController extends BaseApiController |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * The name of the model that is used by the base api controller |
|
| 12 | - * to preform actions like (add, edit ... etc). |
|
| 13 | - * @var string |
|
| 14 | - */ |
|
| 15 | - protected $model = 'notifications'; |
|
| 10 | + /** |
|
| 11 | + * The name of the model that is used by the base api controller |
|
| 12 | + * to preform actions like (add, edit ... etc). |
|
| 13 | + * @var string |
|
| 14 | + */ |
|
| 15 | + protected $model = 'notifications'; |
|
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * List of all route actions that the base api controller |
|
| 19 | - * will skip permissions check for them. |
|
| 20 | - * @var array |
|
| 21 | - */ |
|
| 22 | - protected $skipPermissionCheck = ['markAsRead', 'markAllAsRead', 'list', 'unread']; |
|
| 17 | + /** |
|
| 18 | + * List of all route actions that the base api controller |
|
| 19 | + * will skip permissions check for them. |
|
| 20 | + * @var array |
|
| 21 | + */ |
|
| 22 | + protected $skipPermissionCheck = ['markAsRead', 'markAllAsRead', 'list', 'unread']; |
|
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * Retrieve all notifications of the logged in user. |
|
| 26 | - * |
|
| 27 | - * @param integer $perPage Number of rows per page default all data. |
|
| 28 | - * @return \Illuminate\Http\Response |
|
| 29 | - */ |
|
| 30 | - public function list($perPage = 0) |
|
| 31 | - { |
|
| 32 | - return \Response::json($this->repo->list($perPage), 200); |
|
| 33 | - } |
|
| 24 | + /** |
|
| 25 | + * Retrieve all notifications of the logged in user. |
|
| 26 | + * |
|
| 27 | + * @param integer $perPage Number of rows per page default all data. |
|
| 28 | + * @return \Illuminate\Http\Response |
|
| 29 | + */ |
|
| 30 | + public function list($perPage = 0) |
|
| 31 | + { |
|
| 32 | + return \Response::json($this->repo->list($perPage), 200); |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * Retrieve unread notifications of the logged in user. |
|
| 37 | - * |
|
| 38 | - * @param integer $perPage Number of rows per page default all data. |
|
| 39 | - * @return \Illuminate\Http\Response |
|
| 40 | - */ |
|
| 41 | - public function unread($perPage = 0) |
|
| 42 | - { |
|
| 43 | - return \Response::json($this->repo->unread($perPage), 200); |
|
| 44 | - } |
|
| 35 | + /** |
|
| 36 | + * Retrieve unread notifications of the logged in user. |
|
| 37 | + * |
|
| 38 | + * @param integer $perPage Number of rows per page default all data. |
|
| 39 | + * @return \Illuminate\Http\Response |
|
| 40 | + */ |
|
| 41 | + public function unread($perPage = 0) |
|
| 42 | + { |
|
| 43 | + return \Response::json($this->repo->unread($perPage), 200); |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Mark the notification as read. |
|
| 48 | - * |
|
| 49 | - * @param integer $id Id of the notification. |
|
| 50 | - * @return \Illuminate\Http\Response |
|
| 51 | - */ |
|
| 52 | - public function markAsRead($id) |
|
| 53 | - { |
|
| 54 | - return \Response::json($this->repo->markAsRead($id), 200); |
|
| 55 | - } |
|
| 46 | + /** |
|
| 47 | + * Mark the notification as read. |
|
| 48 | + * |
|
| 49 | + * @param integer $id Id of the notification. |
|
| 50 | + * @return \Illuminate\Http\Response |
|
| 51 | + */ |
|
| 52 | + public function markAsRead($id) |
|
| 53 | + { |
|
| 54 | + return \Response::json($this->repo->markAsRead($id), 200); |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * Mark all notifications as read. |
|
| 59 | - * |
|
| 60 | - * @return \Illuminate\Http\Response |
|
| 61 | - */ |
|
| 62 | - public function markAllAsRead() |
|
| 63 | - { |
|
| 64 | - return \Response::json($this->repo->markAllAsRead(), 200); |
|
| 65 | - } |
|
| 57 | + /** |
|
| 58 | + * Mark all notifications as read. |
|
| 59 | + * |
|
| 60 | + * @return \Illuminate\Http\Response |
|
| 61 | + */ |
|
| 62 | + public function markAllAsRead() |
|
| 63 | + { |
|
| 64 | + return \Response::json($this->repo->markAllAsRead(), 200); |
|
| 65 | + } |
|
| 66 | 66 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | * to preform actions like (add, edit ... etc). |
| 13 | 13 | * @var string |
| 14 | 14 | */ |
| 15 | - protected $model = 'notifications'; |
|
| 15 | + protected $model = 'notifications'; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * List of all route actions that the base api controller |
@@ -5,53 +5,53 @@ |
||
| 5 | 5 | */ |
| 6 | 6 | class NotificationObserver { |
| 7 | 7 | |
| 8 | - public function saving($model) |
|
| 9 | - { |
|
| 10 | - // |
|
| 11 | - } |
|
| 12 | - |
|
| 13 | - public function saved($model) |
|
| 14 | - { |
|
| 15 | - // |
|
| 16 | - } |
|
| 17 | - |
|
| 18 | - public function creating($model) |
|
| 19 | - { |
|
| 20 | - // |
|
| 21 | - } |
|
| 22 | - |
|
| 23 | - public function created($model) |
|
| 24 | - { |
|
| 25 | - // |
|
| 26 | - } |
|
| 27 | - |
|
| 28 | - public function updating($model) |
|
| 29 | - { |
|
| 30 | - // |
|
| 31 | - } |
|
| 32 | - |
|
| 33 | - public function updated($model) |
|
| 34 | - { |
|
| 35 | - // |
|
| 36 | - } |
|
| 37 | - |
|
| 38 | - public function deleting($model) |
|
| 39 | - { |
|
| 40 | - // |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - public function deleted($model) |
|
| 44 | - { |
|
| 45 | - // |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - public function restoring($model) |
|
| 49 | - { |
|
| 50 | - // |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - public function restored($model) |
|
| 54 | - { |
|
| 55 | - // |
|
| 56 | - } |
|
| 8 | + public function saving($model) |
|
| 9 | + { |
|
| 10 | + // |
|
| 11 | + } |
|
| 12 | + |
|
| 13 | + public function saved($model) |
|
| 14 | + { |
|
| 15 | + // |
|
| 16 | + } |
|
| 17 | + |
|
| 18 | + public function creating($model) |
|
| 19 | + { |
|
| 20 | + // |
|
| 21 | + } |
|
| 22 | + |
|
| 23 | + public function created($model) |
|
| 24 | + { |
|
| 25 | + // |
|
| 26 | + } |
|
| 27 | + |
|
| 28 | + public function updating($model) |
|
| 29 | + { |
|
| 30 | + // |
|
| 31 | + } |
|
| 32 | + |
|
| 33 | + public function updated($model) |
|
| 34 | + { |
|
| 35 | + // |
|
| 36 | + } |
|
| 37 | + |
|
| 38 | + public function deleting($model) |
|
| 39 | + { |
|
| 40 | + // |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + public function deleted($model) |
|
| 44 | + { |
|
| 45 | + // |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + public function restoring($model) |
|
| 49 | + { |
|
| 50 | + // |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + public function restored($model) |
|
| 54 | + { |
|
| 55 | + // |
|
| 56 | + } |
|
| 57 | 57 | } |
| 58 | 58 | \ No newline at end of file |
@@ -5,53 +5,53 @@ |
||
| 5 | 5 | */ |
| 6 | 6 | class PushNotificationDeviceObserver { |
| 7 | 7 | |
| 8 | - public function saving($model) |
|
| 9 | - { |
|
| 10 | - // |
|
| 11 | - } |
|
| 12 | - |
|
| 13 | - public function saved($model) |
|
| 14 | - { |
|
| 15 | - // |
|
| 16 | - } |
|
| 17 | - |
|
| 18 | - public function creating($model) |
|
| 19 | - { |
|
| 20 | - // |
|
| 21 | - } |
|
| 22 | - |
|
| 23 | - public function created($model) |
|
| 24 | - { |
|
| 25 | - // |
|
| 26 | - } |
|
| 27 | - |
|
| 28 | - public function updating($model) |
|
| 29 | - { |
|
| 30 | - // |
|
| 31 | - } |
|
| 32 | - |
|
| 33 | - public function updated($model) |
|
| 34 | - { |
|
| 35 | - // |
|
| 36 | - } |
|
| 37 | - |
|
| 38 | - public function deleting($model) |
|
| 39 | - { |
|
| 40 | - // |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - public function deleted($model) |
|
| 44 | - { |
|
| 45 | - // |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - public function restoring($model) |
|
| 49 | - { |
|
| 50 | - // |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - public function restored($model) |
|
| 54 | - { |
|
| 55 | - // |
|
| 56 | - } |
|
| 8 | + public function saving($model) |
|
| 9 | + { |
|
| 10 | + // |
|
| 11 | + } |
|
| 12 | + |
|
| 13 | + public function saved($model) |
|
| 14 | + { |
|
| 15 | + // |
|
| 16 | + } |
|
| 17 | + |
|
| 18 | + public function creating($model) |
|
| 19 | + { |
|
| 20 | + // |
|
| 21 | + } |
|
| 22 | + |
|
| 23 | + public function created($model) |
|
| 24 | + { |
|
| 25 | + // |
|
| 26 | + } |
|
| 27 | + |
|
| 28 | + public function updating($model) |
|
| 29 | + { |
|
| 30 | + // |
|
| 31 | + } |
|
| 32 | + |
|
| 33 | + public function updated($model) |
|
| 34 | + { |
|
| 35 | + // |
|
| 36 | + } |
|
| 37 | + |
|
| 38 | + public function deleting($model) |
|
| 39 | + { |
|
| 40 | + // |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + public function deleted($model) |
|
| 44 | + { |
|
| 45 | + // |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + public function restoring($model) |
|
| 49 | + { |
|
| 50 | + // |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + public function restored($model) |
|
| 54 | + { |
|
| 55 | + // |
|
| 56 | + } |
|
| 57 | 57 | } |
| 58 | 58 | \ No newline at end of file |
@@ -4,73 +4,73 @@ |
||
| 4 | 4 | |
| 5 | 5 | class NotificationRepository extends AbstractRepository |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Return the model full namespace. |
|
| 9 | - * |
|
| 10 | - * @return string |
|
| 11 | - */ |
|
| 12 | - protected function getModel() |
|
| 13 | - { |
|
| 14 | - return 'App\Modules\Notifications\Notification'; |
|
| 15 | - } |
|
| 7 | + /** |
|
| 8 | + * Return the model full namespace. |
|
| 9 | + * |
|
| 10 | + * @return string |
|
| 11 | + */ |
|
| 12 | + protected function getModel() |
|
| 13 | + { |
|
| 14 | + return 'App\Modules\Notifications\Notification'; |
|
| 15 | + } |
|
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * Retrieve all notifications of the logged in user. |
|
| 19 | - * |
|
| 20 | - * @param integer $perPage |
|
| 21 | - * @return Collection |
|
| 22 | - */ |
|
| 23 | - public function list($perPage) |
|
| 24 | - { |
|
| 25 | - return \Auth::user()->notifications()->paginate($perPage); |
|
| 26 | - } |
|
| 17 | + /** |
|
| 18 | + * Retrieve all notifications of the logged in user. |
|
| 19 | + * |
|
| 20 | + * @param integer $perPage |
|
| 21 | + * @return Collection |
|
| 22 | + */ |
|
| 23 | + public function list($perPage) |
|
| 24 | + { |
|
| 25 | + return \Auth::user()->notifications()->paginate($perPage); |
|
| 26 | + } |
|
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * Retrieve unread notifications of the logged in user. |
|
| 30 | - * |
|
| 31 | - * @param integer $perPage |
|
| 32 | - * @return Collection |
|
| 33 | - */ |
|
| 34 | - public function unread($perPage) |
|
| 35 | - { |
|
| 36 | - return \Auth::user()->unreadNotifications()->paginate($perPage); |
|
| 37 | - } |
|
| 28 | + /** |
|
| 29 | + * Retrieve unread notifications of the logged in user. |
|
| 30 | + * |
|
| 31 | + * @param integer $perPage |
|
| 32 | + * @return Collection |
|
| 33 | + */ |
|
| 34 | + public function unread($perPage) |
|
| 35 | + { |
|
| 36 | + return \Auth::user()->unreadNotifications()->paginate($perPage); |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * Mark the notification as read. |
|
| 41 | - * |
|
| 42 | - * @param integer $id |
|
| 43 | - * @return object |
|
| 44 | - */ |
|
| 45 | - public function markAsRead($id) |
|
| 46 | - { |
|
| 47 | - if ($notification = \Auth::user()->unreadNotifications()->where('id', $id)) |
|
| 48 | - { |
|
| 49 | - $notification->first()->markAsRead(); |
|
| 50 | - } |
|
| 51 | - } |
|
| 39 | + /** |
|
| 40 | + * Mark the notification as read. |
|
| 41 | + * |
|
| 42 | + * @param integer $id |
|
| 43 | + * @return object |
|
| 44 | + */ |
|
| 45 | + public function markAsRead($id) |
|
| 46 | + { |
|
| 47 | + if ($notification = \Auth::user()->unreadNotifications()->where('id', $id)) |
|
| 48 | + { |
|
| 49 | + $notification->first()->markAsRead(); |
|
| 50 | + } |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * Mark all notifications as read. |
|
| 55 | - * |
|
| 56 | - * @return void |
|
| 57 | - */ |
|
| 58 | - public function markAllAsRead() |
|
| 59 | - { |
|
| 60 | - \Auth::user()->unreadNotifications()->update(['read_at' => now()]); |
|
| 61 | - } |
|
| 53 | + /** |
|
| 54 | + * Mark all notifications as read. |
|
| 55 | + * |
|
| 56 | + * @return void |
|
| 57 | + */ |
|
| 58 | + public function markAllAsRead() |
|
| 59 | + { |
|
| 60 | + \Auth::user()->unreadNotifications()->update(['read_at' => now()]); |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - /** |
|
| 64 | - * Notify th given user with the given notification. |
|
| 65 | - * |
|
| 66 | - * @param collection $users |
|
| 67 | - * @param string $notification |
|
| 68 | - * @param object $notificationData |
|
| 69 | - * @return void |
|
| 70 | - */ |
|
| 71 | - public function notify($users, $notification, $notificationData = false) |
|
| 72 | - { |
|
| 73 | - $notification = 'App\Modules\Notifications\Notifications\\' . $notification; |
|
| 74 | - \Notification::send($users, new $notification($notificationData)); |
|
| 75 | - } |
|
| 63 | + /** |
|
| 64 | + * Notify th given user with the given notification. |
|
| 65 | + * |
|
| 66 | + * @param collection $users |
|
| 67 | + * @param string $notification |
|
| 68 | + * @param object $notificationData |
|
| 69 | + * @return void |
|
| 70 | + */ |
|
| 71 | + public function notify($users, $notification, $notificationData = false) |
|
| 72 | + { |
|
| 73 | + $notification = 'App\Modules\Notifications\Notifications\\' . $notification; |
|
| 74 | + \Notification::send($users, new $notification($notificationData)); |
|
| 75 | + } |
|
| 76 | 76 | } |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | */ |
| 71 | 71 | public function notify($users, $notification, $notificationData = false) |
| 72 | 72 | { |
| 73 | - $notification = 'App\Modules\Notifications\Notifications\\' . $notification; |
|
| 73 | + $notification = 'App\Modules\Notifications\Notifications\\'.$notification; |
|
| 74 | 74 | \Notification::send($users, new $notification($notificationData)); |
| 75 | 75 | } |
| 76 | 76 | } |