All Questions
2 questions
0
votes
3
answers
685
views
Sort array from days Laravel 5.8
I want to sort an array according to the days name order. here is my array comes from query result.
$data = DB::table('jobs')
->select('day', DB::raw('count(*) as count')...
1
vote
0
answers
251
views
Cannot get Session message from Handler class laravel
What I try to do is to get a message in the session when redirecting back to the page from exception handler class, When I get 'PostTooLargeException' It should back to page with a message.
If ...