It just quickstart to have simple blogging system for your existing laravel application. It will give you Blogs
and Categories
out of the box. Ngeblog also provides a simple admin panel using Bulma.
-
composer require antoniputra/ngeblog
-
php artisan ngeblog:install
-
You done!
Once this package already installed correctly, by default it will provide admin panel at /ngeblog
with no protection. You can add your own protection like below:
// routes/web.php
Ngeblog::auth(function ($request) {
// your protection logic...
return auth()->check();
});
- Thanks to @arryanggaputra for the nice looking logo.
Ngeblog is open-sourced software licensed under the MIT license