1. Go to this page and download the library: Download webx-ui/module-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/ */
webx-ui / module-blog example snippets
$article->publish(at: now()->addWeek()); // on the site next Tuesday
$article->isPublished(); // false
$article->isScheduled(); // true
$article->status(); // 'scheduled'
Article::query()->published()->get(); // what a reader can see, right now