PHP code example of danherbert-io / elide-simple-starter-kit
1. Go to this page and download the library: Download danherbert-io/elide-simple-starter-kit 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/ */
danherbert-io / elide-simple-starter-kit example snippets
Route::get('make-success-notification', function() {
return redirect(...)
->with('toast-success', 'This was a success!');
});