1. Go to this page and download the library: Download jiannius/atom-livewire 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/ */
jiannius / atom-livewire example snippets
protected $middleware = [
...
\Jiannius\Atom\Http\Middleware\Bootstrap::class, // for site security like https redirect etc
];
php artisan atom:init
php artisan queue:table // publish queue table from laravel
php artisan migrate
php artisan atom:migrate base // migrate atom base tables
// app/Jobs/OzopayFulfillment.php
...
protected $params; // will contains the response from provider
public function __construct($params)
{
$this->params = $params;
}
public function handle()
{
// handle fulfillment
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.