Before using the command
php artisan make:auth
the ckeditor, taken from the website https://github.com/UniSharp/laravel-ckeditor
was working fine.
After using the command, the ckeditor code has dissapeared in the file app.blade.php. In this case, the code
<script src="/vendor/unisharp/laravel-ckeditor/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
was put again in the app.blade.php and the following commands in the terminal were used once more:
composer require unisharp/laravel-ckeditor
php artisan vendor:publish --tag=ckeditor
Also,in the config/app.php in the addservice provider is still the:
Unisharp\Ckeditor\ServiceProvider::class,
I am doing tutorial from traversy media channel on the youtube, which link is the following laravel from scratch
My question is, what else I must write down in the Laravel, that the CKeditor will be visible.