PHP code example of relaticle / ink

1. Go to this page and download the library: Download relaticle/ink 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/ */

    

relaticle / ink example snippets


// AppPanelProvider.php
->plugin(\Relaticle\Ink\InkPlugin::make())

// config/ink.php
'features' => [
    'public_routes' => true,   // /blog, /blog/{slug}, /blog/category/{slug}, /blog/preview/{post}
    'feed'          => true,   // adds /blog/feed (RSS 2.0)
    'tags'          => true,   // /blog/tag/{slug}, TagResource in admin
    'media_library' => true,   // SpatieMediaLibraryFileUpload (
bash
php artisan migrate
bash
php artisan vendor:publish --tag=ink-views