About 50 results
Open links in new tab
  1. How can I change "127.0.0.1:8000 / localhost:8000" to my desired url ...

    Jul 14, 2019 · I'm using laravel and I don't know how to customize the default url which is "127.0.0.1:8000" or "localhost:8000" to my desired url. My expectation is to change 127.0.0.1:8000 to …

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

  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. How to create custom helper functions in Laravel

    Laravel uses composer's autoloader to know where to include all the libraries and files it relies on. This referenced in bootstrap/autoload.php. Read the comment in that file. The approach is to add the …

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

  6. php - Vite manifest not found - Stack Overflow

    Jul 20, 2022 · I'm working on a project that is using laravel 9 and Vite with laravel-vite, In the Dev environment everything works fine, but in production on the cPanel server I have the following issue: …

  7. php - How to use multiple databases in Laravel - Stack Overflow

    Dec 26, 2021 · From Laravel Docs: You may access each connection via the connection method on the DB facade when using multiple connections. The name passed to the connection method should …

  8. Laravel Eloquent - How to query NOT LIKE? - Stack Overflow

    Sep 7, 2018 · Laravel Eloquent - How to query NOT LIKE? Asked 7 years, 7 months ago Modified 4 years, 9 months ago Viewed 80k times

  9. php - Laravel composer install giving error "Your lock file does not ...

    Dec 30, 2020 · I have been writing laravel code for quite sometime. Currently, I tried cloning a project from github and editing locally. I installed composer in my project directory but a vendor folder was not

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

    Aug 17, 2017 · I am very new to Laravel. It is supposed to make things easier and I can see that. However, why would I do all of the above if I want to add a column to my table? Why would I not just …