Posts by Marlon Raphael • 11 points
2 posts
-
1
votes3
answers1024
viewsA: ERROR: No application Encryption key has been specified
Try php artisan key:generate php artisan config:cache php artisan cache:clear
-
0
votes1
answer73
viewsA: How to apply filters in a belongsToMany relation in Laravel 5.8?
If you are creating the templates in the Eloquent pattern, just add the conditions Example: $posts = App\Post::where('is_active' => 1)->orderBy('rate', 'desc')->take(8)->get();…