1. Go to this page and download the library: Download optimistdigital/nova-blog library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
optimistdigital / nova-blog example snippets
// in app/Providers/NovaServiceProvider.php
public function tools()
{
return [
// ...
new \OptimistDigital\NovaBlog\NovaBlog
];
}
// in /config/nova-blog.php
// ...
'locales' => [
'en' => 'English',
'et' => 'Estonian',
],
// OR
'locales' => function () {
return Locale::all()->pluck('name', 'key');
},
// if you wish to cache the configuration, pass a reference instead:
'locales' => NovaBlogConfiguration::class . '::locales',
// ...
'locales' => nova_lang_get_all_locales(),
// in /config/nova-blog.php
// ...
'page_url' => function (Post $post) {
return env('FRONTEND_URL') . '/' . $post->slug;
},
// if you wish to cache the configuration, pass a reference instead:
'page_url' => NovaBlogConfiguration::class . '::pageUrl',
// ...