Welcome to Pavbit, a bootstrapped web software development company dedicated to building custom web solutions for your business. Whether you need a tailored application, or digital platform, we combine expertise with innovation to deliver results that align with your goals. Let us bring your ideas to life with efficient, scalable solutions!
namespace App\Http\Controllers;
use App\Models\Notification;
use Inertia\Inertia;
class KlientiController extends Controller
{
public function index()
{
$notifications = Noticifation::all();
return Inertia::render('notification.index', compact('notifications'));
}
public function show(int $id)
{
$notification = Noticifation::findOrFail($id);
return Inertia::render('notification.show', compact('notification'));
}
}