Browse Source

Update NotificationService

Daniel Supernault 6 năm trước cách đây
mục cha
commit
d09b00a70f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      app/Services/NotificationService.php

+ 1 - 1
app/Services/NotificationService.php

@@ -73,7 +73,7 @@ class NotificationService {
 	public static function getNotification($id)
 	{
 		return Cache::remember('service:notification:'.$id, now()->addDays(7), function() use($id) {
-			$n = Notification::findOrFail($id);
+			$n = Notification::with('item')->findOrFail($id);
 			$fractal = new Fractal\Manager();
 			$fractal->setSerializer(new ArraySerializer());
 			$resource = new Fractal\Resource\Item($n, new NotificationTransformer());