51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\ViewComposers;
|
|
|
|
use App\Traits\Modules;
|
|
use Illuminate\Support\Facades\Route;
|
|
use Illuminate\View\View;
|
|
|
|
class Notifications
|
|
{
|
|
use Modules;
|
|
|
|
/**
|
|
* Bind data to the view.
|
|
*
|
|
* @param View $view
|
|
* @return void
|
|
*/
|
|
public function compose(View $view)
|
|
{
|
|
// No need to add suggestions in console
|
|
if (app()->runningInConsole() || !config('app.installed') || !user()) {
|
|
return;
|
|
}
|
|
|
|
if (!$path = Route::current()->uri()) {
|
|
return;
|
|
}
|
|
|
|
$path = str_replace('{company_id}/', '', $path);
|
|
|
|
$notifications = $this->getNotifications($path);
|
|
|
|
// Push to a stack
|
|
foreach ($notifications as $notification) {
|
|
$path = str_replace('/', '#', $notification->path);
|
|
|
|
$message = str_replace('#path#', $path, $notification->message);
|
|
$message = str_replace('#token#', csrf_token(), $message);
|
|
$message = str_replace('#url#', route('dashboard'), $message);
|
|
$message = str_replace('#company_id#', company_id(), $message);
|
|
|
|
if (!setting('notifications.' . $notification->path . '.' . $notification->id . '.status', 1)) {
|
|
continue;
|
|
}
|
|
|
|
$view->getFactory()->startPush('content_content_start', $message);
|
|
}
|
|
}
|
|
}
|