About 50 results
Open links in new tab
  1. 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 context of …

  2. 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 …

  3. php - What are Facades used in Laravel? - Stack Overflow

    Laravel ships with many facades which provide access to almost all of Laravel's features. Laravel facades serve as "static proxies" to underlying classes in the service container, providing the benefit …

  4. Laravel Migration Error: Syntax error or access violation: 1071 ...

    Laravel uses the utf8mb4 character set by default, which includes support for storing "emojis" in the database. If you are running a version of MySQL older than the 5.7.7 release or MariaDB older than …

  5. Laravel - create model, controller and migration in single artisan ...

    Dec 16, 2021 · I can create a model and resource controller (binded to model) with the following command php artisan make:controller TodoController --resource --model=Todo I want to also create …

  6. laravel - Visual Studio Code PHP Intelephense keeps showing a not ...

    Dec 3, 2019 · 32 This solution may help you if you know your problem is limited to Facades and you are running Laravel 5.5 or above. Install laravel-ide-helper composer require --dev barryvdh/laravel-ide …

  7. Laravel Add a new column to existing table in a migration

    Aug 17, 2017 · 15 Laravel 7 Create a migration file using cli command: php artisan make:migration add_paid_to_users_table --table=users A file will be created in the migrations folder, open it in an …

  8. Laravel htaccess - Stack Overflow

    May 5, 2010 · I've setup a new install of Laravel on my local. It appears there are issues with htaccess or Apache settings. I've researched for a number of hours and tried everything I read. OSX Lion …

  9. Laravel showing "Failed to clear cache. Make sure you have the ...

    Sep 8, 2018 · Laravel was displaying to me "Access denied for user 'homestead'@'localhost' (using password: YES)". One solution for this was clearing the cache and the config cache stored, all this …

  10. Laravel Eloquent "WHERE NOT IN" - Stack Overflow

    Laravel Eloquent "WHERE NOT IN" Asked 11 years, 6 months ago Modified 3 years, 1 month ago Viewed 563k times