PHP code example of parsampsh / adminx
1. Go to this page and download the library: Download parsampsh/adminx 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/ */
parsampsh / adminx example snippets
// ...
// ...
$admin = new \Adminx\Core;
// set the admin panel configurations on $admin object
// register the admin panel
$admin->register('/admin'); // `/admin` is the route of admin panel
// ...