Ckfinder/ckfinder-laravel-package [better] -
You have two ways to use CKFinder on the frontend: integrated with CKEditor or standalone.
'images' => [ 'maxWidth' => 1920, 'maxHeight' => 1080, 'quality' => 80, 'watermark' => [ 'enabled' => true, 'path' => public_path('watermark.png'), 'position' => 'bottomRight', 'opacity' => 50, ] ] ckfinder/ckfinder-laravel-package
'backends' => [ [ 'name' => 'default', 'adapter' => 'local', 'baseUrl' => '/storage/ckfinder/', 'root' => storage_path('app/ckfinder'), ], // S3 example [ 'name' => 's3_assets', 'adapter' => 's3', 'key' => env('AWS_KEY'), 'secret' => env('AWS_SECRET'), 'region' => env('AWS_REGION'), 'bucket' => env('AWS_BUCKET'), 'baseUrl' => env('AWS_URL'), ] ] You have two ways to use CKFinder on
);