Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How Do I Add An Image on Push Notification ? #203

Open
officersiam opened this issue Mar 5, 2025 · 0 comments
Open

How Do I Add An Image on Push Notification ? #203

officersiam opened this issue Mar 5, 2025 · 0 comments

Comments

@officersiam
Copy link

<?php

namespace App\Filament\Resources\LawPostResource\Pages;

use App\Filament\Resources\LawPostResource;
use Filament\Actions;
use Filament\Resources\Pages\EditRecord;
use Berkayk\OneSignal\OneSignalFacade as OneSignal;
// use OneSignal;

class EditLawPost extends EditRecord
{
    protected static string $resource = LawPostResource::class;

    protected function afterSave(): void
    {
        $post = $this->record;
        $tags = explode(',', $post->tags);
        $imageUrl = asset('images/law/' . $post->slug . '.jpg');

        OneSignal::sendNotificationToAll(
            "{$post->title} [Updated]",
            $url = route('law.show', $post->slug),
            $data = [
                'post_id' => $post->id,
                'author' => $post->author->name, // Assuming the author relationship exists
                'big_picture' => $imageUrl,     // Assuming image URL is stored in the post model
            ],
            null,  // Add user IDs or filters if needed
            $tags,
        );
    }

    protected function getHeaderActions(): array
    {
        return [
            Actions\ViewAction::make(),
            Actions\DeleteAction::make(),
            Actions\ForceDeleteAction::make(),
            Actions\RestoreAction::make(),
        ];
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant