About 19,700,000 results
Open links in new tab
  1. vcruntime140.dll 14.0 not compatible with PHP build

    When using XAMPP Server on Windows whilst using the Laravel Framework to create a website the console logged an error when running the server "vcruntime140.dll 14.0 not compatible with PHP build".

  2. php - Could not open input file: artisan - Stack Overflow

    First, be sure to be in the laravel project folder or else the terminal won't be able to locate the artisan file in the project directory and any subsequent request you pulled to start a server would be rejected. …

  3. Rollback one specific migration in Laravel - Stack Overflow

    May 17, 2015 · 6 LARAVEL 10 has a --batch option. See php artisan migrate:rollback --help: --batch=BATCH - The batch of migrations (identified by their batch number) to be reverted If you used …

  4. How can I remove a package from Laravel using PHP Composer?

    What is the correct way to remove a package from Laravel using PHP Composer? So far I've tried: Remove declaration from file composer.json (in the "require" section) Remove any class …

  5. 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.

  6. Laravel: How to Get Current Route Name? (v5 ... v7)

    In Laravel v4 I was able to get the current route name using... Route::currentRouteName() How can I do it in Laravel v5 and Laravel v6?

  7. How to Create Multiple Where Clause Query Using Laravel Eloquent?

    laravel requiring the first call to be static but the rest -> is really bad design.

  8. How to set up file permissions for Laravel? - Stack Overflow

    Laravel may require some permissions to be configured: folders within storage and vendor require write access by the web server. Does it mean that the web server needs access to the storage and vendor …

  9. How to generate .env file for laravel? - Stack Overflow

    Apr 28, 2015 · copy any .env.example file of any Laravel project and create .env.example file in your Laravel directory, then paste it in the file you just created, copy this code below and open your …

  10. laravel - Clone an Eloquent object including all relationships? - Stack ...

    Is there any way to easily clone an Eloquent object, including all of its relationships? For example, if I had these tables: users ( id, name, email ) roles ( id, name ) user_roles ( user_id, rol...