Top "Laravel-5" questions

Laravel 5 is the previous major version of the open-source PHP web development MVC framework created by Taylor Otwell.

Access Controller method from another controller in Laravel 5

I have two controllers SubmitPerformanceController and PrintReportController. In PrintReportController I have a method called getPrintReport. How to access this method …

laravel laravel-5
Laravel 5: Display HTML with Blade

I have a string returned to one of my views, like this: $text = '<p><strong>…

laravel laravel-5 blade
Laravel 5 – Remove Public from URL

I know this is a very popular question but I haven't been able to find a working solution for Laravel 5. …

php .htaccess laravel mamp laravel-5
How to Get the Query Executed in Laravel 5? DB::getQueryLog() Returning Empty Array

I'm trying to view the log for a query, but DB::getQueryLog() is just returning an empty array: $user = User::…

php logging laravel laravel-5
How to query between two dates using Laravel and Eloquent?

I'm trying to create a report page that shows reports from a specific date to a specific date. Here's my …

php laravel laravel-5 orm
Best Practices for Custom Helpers in Laravel 5

I would like to create helper functions to avoid repeating code between views in Laravel 5: view.blade.php <p&…

php laravel laravel-5 laravel-helper
How to include External CSS and JS file in Laravel 5

I am Using Laravel 5.0 , the Form and Html Helper are removed from this version , i dont know how to include …

php laravel-5
How to get client IP address in Laravel 5+

I am trying to get the client's IP address in Laravel. It is easy to get a client's IP in …

php laravel laravel-5 laravel-5.7
Why do I have to run "composer dump-autoload" command to make migrations work in laravel?

I have built some migration classes in my application to create the tables I need, but I keep getting errors. …

php laravel laravel-5
Laravel 5 Carbon format datetime

I have an array that returns the following date time: $item['created_at'] => "2015-10-28 19:18:44" How do I change …

php laravel laravel-5 php-carbon