About 11,800,000 results
Open links in new tab
  1. How to install Laravel via Laravel Installer on Windows?

    Oct 19, 2014 · Forget about the Laravel installer and use Composer - it'll automatically install Composer system-wide (you don't have to fiddle with the PATH manually) and then you can just use it to install …

  2. 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 c/xampp/htddocs directory, I …

  3. Right method to install laravel on my local computer

    Feb 18, 2018 · I am new for laravel. I need to install laravel in my local computer. i found many tutorial for that but there are showing different different method to install them. composer global require "lara...

  4. php - api route not found in laravel - Stack Overflow

    Mar 20, 2024 · I am new to laravel.Firstly Api.php was not initially created in routes.After creating this is my code: <?php use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; use App\Http\

  5. Unable to locate the api.php route file in Laravel 11

    Mar 19, 2024 · In any case, the issue is that Laravel doesn't register the api middleware when there's a 'using' clause in the bootstrap/app.php. artisan install:api doesn't detect this and it adds the path to …

  6. How to install all required PHP extensions for Laravel?

    The Laravel server requirements specify the PHP extensions, including BCMath, Ctype, cURL, DOM, Fileinfo, JSON, Mbstring, OpenSSL, PCRE, PDO, Tokenizer, and XML, are required.

  7. How to install Laravel 5.4? - Stack Overflow

    Jan 24, 2017 · I heard Laravel 5.4 will be unveiled tomorrow. How to install (Laravel 5.4) the Beta version? Do you know the new features?

  8. php - How to install Laravel's Artisan? - Stack Overflow

    Explanation: When you install a new laravel project on your folder (for example myfolder) using the composer, it installs the complete laravel project inside your folder (myfolder/laravel) than artisan is …

  9. How to install Laravel 10.x using Sail? - Stack Overflow

    Mar 20, 2024 · bash -c "composer create-project laravel/laravel:^10.0 example-app && cd example-app && php ./artisan sail:install --with=mysql,redis,meilisearch,mailpit,selenium " of course you can also …

  10. php - How to enable CORS in Laravel? - Stack Overflow

    12 Try laravel-cors package that allows you to send Cross-Origin Resource Sharing headers with Laravel middleware configuration.