1. Go to this page and download the library: Download norieli/laravel-ueditor 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/ */
norieli / laravel-ueditor example snippets
// ueditor get
Route::get('/ueditor',function ()
{
return (new \Norie\Laravel\UE\Controller())->do();
});
// ueditor get
Route::middleware(['auth:api'])->post('/ueditor',function ()
{
return (new \Norie\Laravel\UE\Controller())->do();
});