feat: stats

This commit is contained in:
2026-05-16 17:11:07 +02:00
parent d9e80f7603
commit 7b8ede2a1a
18 changed files with 254 additions and 53 deletions
+2 -2
View File
@@ -3,7 +3,6 @@
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
@@ -39,11 +38,12 @@ class TestNotification extends Notification
->action('Notification Action', url('/'))
->line('Thank you for using our application!');
}
public function toExpoPush($notifiable)
{
return [
'title' => 'Test',
'body' => 'Notification depuis Laravel API',
'body' => 'Notification test depuis Laravel API',
'data' => ['test' => true],
];
}