PHP code example of dgtlss / columbus
1. Go to this page and download the library: Download dgtlss/columbus 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/ */
dgtlss / columbus example snippets
php artisan columbus:init
php artisan columbus:map
Route::middleware(['Mappable'])->group(function(){
/* routes in this group will be added to the sitemap */
Route::get('/', function () {
return view('welcome');
})->name('home');
});