About 21,200,000 results
Open links in new tab
  1. Newest 'laravel' Questions - Stack Overflow

    1 day ago · I am using the laravel-localization package to localize my Laravel app. It works perfectly normal on local enviroment (using php artisan serve) and on shared hosting with …

  2. Get Specific Columns Using “With()” Function in Laravel Eloquent

    May 20, 2017 · 28 If you want to get specific columns using with() in laravel eloquent then you can use code as below which is originally answered by @Adam in his answer here in response of …

  3. Laravel - Eloquent "Has", "With", "WhereHas" - What do they mean?

    May 14, 2015 · I've found the concept and meaning behind these methods to be a little confusing, is it possible for somebody to explain to me what the difference between has and with is, in the …

  4. laravel - Set port for php artisan.php serve - Stack Overflow

    Aug 1, 2013 · How do we set a custom port for test server? Normally when we do php artisan serve the folder gets served as : localhost:8000 How do could we access one folder as: …

  5. Installing specific laravel version with composer create-project

    composer create-project laravel/laravel your-project-name --prefer-dist But, when you run the above command, it will grab the latest version of Laravel. How can I control it if I want to install …

  6. Laravel Redirect Back with() Message - Stack Overflow

    May 8, 2017 · The accepted answer is for use in Laravel 4 (see the question tag), the parameters for the withErrors() method in the answer is an array with two elements: ['msg', 'The Message'].

  7. Displaying HTML with Blade shows the HTML code - Stack Overflow

    php html laravel laravel-blade edited Dec 26, 2021 at 10:54 user10563627 asked Mar 25, 2015 at 11:08

  8. Install Laravel using Composer - Stack Overflow

    Feb 1, 2017 · I'm trying to install Laravel using Composer, but after running the following command composer create-project laravel/laravel cmsLaravel 5.2 pointing to my …

  9. Eloquent: find() and where() usage laravel - Stack Overflow

    Nov 22, 2016 · Eloquent understands any of the types defined in the castAttribute() function, which as of Laravel 5.4 are: int, float, string, bool, object, array, collection, date and timestamp.

  10. Laravel - display a PDF file in storage without forcing download?

    140 Update for 2017 As of Laravel 5.2 documented under Other response types you can now use the file helper to display a file in the user's browser.