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 Query: Using WHERE with OR AND OR?

    Jun 8, 2013 · Laravel Eloquent Query: Using WHERE with OR AND OR? Asked 12 years, 8 months ago Modified 1 year, 5 months ago Viewed 740k times

  3. Newest 'laravel' Questions - Stack Overflow

    3 days ago · I’m running a Laravel application using the dunglas/frankenphp:1.9-php8.4-alpine Docker image and deploying it on Kubernetes. Logs are written to stderr and collected by Google Cloud’s …

  4. php - Laravel whereIn OR whereIn - Stack Overflow

    Mar 31, 2014 · Laravel whereIn OR whereIn Asked 11 years, 10 months ago Modified 6 months ago Viewed 307k times

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

  6. Laravel Eloquent: Ordering results of all () - Stack Overflow

    Jul 2, 2013 · DB::table('users') ->orderBy('priority', 'desc') ->orderBy('email', 'asc') ->get(); this means laravel will sort result based on priority attribute. when it's done, it will order result with same priority …

  7. How to force Laravel Project to use HTTPS for all routes?

    Mar 6, 2016 · 9 For laravel 8, if you tried all of the above methods but got browser redirected you too many times error, please set proxies in TrustProxies middleware like the following: …

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

    How to Create Multiple Where Clause Query Using Laravel Eloquent? Asked 12 years, 3 months ago Modified 10 months ago Viewed 1.2m times

  9. How to Set Variables in a Laravel Blade Template

    In laravel-4, you can use the template comment syntax to define/set variables. Comment syntax is {{-- anything here is comment --}} and it is rendered by blade engine as

  10. Laravel Eloquent groupBy() AND also return count of each group

    1 Laravel Eloquent query that uses the GROUP BY clause with advanced aggregation functions and conditional statements. GroupBy on one column.