PHP code example of webdevifti / admindash

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

    

webdevifti / admindash example snippets


php artisan ui bootstrap --auth

php artisan migrate

php artisan vendor:publish
 php
Route::middleware(['auth:web'])->prefix('admin')->name('admin.')->group(function () {
    Route::get('/dashboard', [HomeController::class, 'index'])->name('home');
});
 php 
public function index(){
	return view('vendor.admindash.admin.index');
}