Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
Laravel is accessible, powerful, and provides tools required for large, robust applications.
-first fork the repo
-then clone repo using pull request
-then create your own branch
-now you are good to go
use this command
- composer dump-autoload
-composer install
-copy and paste FILESYSTEM_DRIVER=public in .env if not added
-makesure in filesystem.php it has 'default' => env('FILESYSTEM_DRIVER', 'public'),
-run this command: Php artisan storage:link
do follow this link :<a href="https://www.nicesnippets.com/blog/laravel-6-toastr-notifications-using-yoeunestoastr-package">toastr notification</a>
step:
- composer require yoeunes/toastr
-in config/App.php file add
'providers' => [
...
````
Yoeunes\Toastr\ToastrServiceProvider::class
...
];
• composer require te7a-houdini/laravel-trix
• php artisan vendor:publish --provider="Te7aHoudini\LaravelTrix\LaravelTrixServiceProvider"
• php artisan migrate
From <https://laravel-news.com/trix-editor-for-laravel>
<html> <head> @trixassets </head>
<body> <form method="POST" action="route('article.store')">
@csrf
@trix(\App\Article::class, 'content')
<input type="submit"> </form> </body> </html>