Curation by rbz 11 months ago for query laravel
Original results
-
https://laravel.com/ — found via Mwmbl
Laravel - The PHP Framework For Web Artisans
Laravel is committed to delivering the best testing experience you can imagine. No more brittle tests that are a nightmare to maintain. Beautiful testing …
-
https://laravel.com/docs/sail — found via Mwmbl
Laravel Sail - Laravel - The PHP Framework For Web Artisans
At its heart, Sail is the docker-compose.yml file and the sail script that is stored at the root of your project. The sail script provides a CLI with conv…
-
http://laravel.com/docs/5.0/homestead — found via Mwmbl
Laravel Homestead - Laravel - The PHP Framework For Web Artisans
Laravel Homestead Introduction Laravel strives to make the entire PHP development experience delightful, including your local development environment. Va…
-
https://laravel.com/docs/6.x — found via Mwmbl
Installation - Laravel - The PHP Framework For Web Artisans
The Laravel framework has a few system requirements. All of these requirements are satisfied by the Laravel Homestead virtual machine, so it's highly reco…
-
https://flareapp.io/ — found via Mwmbl
Laravel error tracking – Flare
You can share your exceptions from your local environment or production. Pick the exact content which can see the light when you ask for help. Need more a…
-
https://laravel.com/docs/5.2/mail — found via Mwmbl
Mail - Laravel - The PHP Framework For Web Artisans
Mail Introduction Laravel provides a clean, simple API over the popular SwiftMailer library. Laravel provides drivers for SMTP, Mailgun, Mandrill, SparkP…
-
http://laravel.com/docs/errors — found via Mwmbl
Error Handling - Laravel - The PHP Framework For Web Artisans
Introduction When you start a new Laravel project, error and exception handling is already configured for you. The App\Exceptions\Handler class is where …
-
https://laravel.com/docs/7.x/helpers — found via Mwmbl
Helpers - Laravel - The PHP Framework For Web Artisans
Laravel includes a variety of global "helper" PHP functions. Many of these functions are used by the framework itself; however, you are free to use them i…
-
https://laravel.com/docs/8.x/queues — found via Mwmbl
Queues - Laravel - The PHP Framework For Web Artisans
Introduction While building your web application, you may have some tasks, such as parsing and storing an uploaded CSV file, that take too long to perfor…
-
https://laravel.com/docs/6.x/seeding — found via Mwmbl
Database: Seeding - Laravel - The PHP Framework For Web Artisans
Laravel includes a simple method of seeding your database with test data using seed classes. All seed classes are stored in the database/seeds directory. …
-
https://laravel.com/docs/5.5/csrf — found via Mwmbl
CSRF Protection - Laravel - The PHP Framework For Web Artisans
CSRF Protection Introduction Laravel makes it easy to protect your application from cross-site request forgery (CSRF) attacks. Cross-site request forgeri…
-
https://laravel.com/docs/7.x/routing — found via Mwmbl
Routing - Laravel - The PHP Framework For Web Artisans
The most basic Laravel routes accept a URI and a Closure , providing a very simple and expressive method of defining routes: Route :: get ( ' foo ' , func…
-
http://laravel.com/docs/4.2/facades — found via Mwmbl
Facades - Laravel - The PHP Framework For Web Artisans
Facades provide a "static" interface to classes that are available in the application's IoC container . Laravel ships with many facades, and you have prob…
-
https://laravel.com/docs/5.2/routing — found via Mwmbl
HTTP Routing - Laravel - The PHP Framework For Web Artisans
All Laravel routes are defined in the app/Http/routes.php file, which is automatically loaded by the framework. The most basic Laravel routes simply accep…
-
https://laravel.com/docs/8.x/validation — found via Mwmbl
Validation - Laravel - The PHP Framework For Web Artisans
Laravel provides several different approaches to validate your application's incoming data. It is most common to use the validate method available on all …
-
https://laravel.com/docs/7.x/blade — found via Mwmbl
Blade Templates - Laravel - The PHP Framework For Web Artisans
Blade is the simple, yet powerful templating engine provided with Laravel. Unlike other popular PHP templating engines, Blade does not restrict you from u…
-
https://laravel.com/docs/5.7/upgrade — found via Mwmbl
Upgrade Guide - Laravel - The PHP Framework For Web Artisans
{note} We attempt to document every possible breaking change. Since some of these breaking changes are in obscure parts of the framework only a portion of…
-
https://laravel.com/docs/7.x/releases — found via Mwmbl
Release Notes - Laravel - The PHP Framework For Web Artisans
When referencing the Laravel framework or its components from your application or package, you should always use a version constraint such as ^7.0 , since…
-
https://laravel.com/docs/4.2/eloquent — found via Mwmbl
Eloquent ORM - Laravel - The PHP Framework For Web Artisans
The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database. Each database table has a …
-
https://laravel.com/docs/10.x/container — found via Mwmbl
Service Container - Laravel - The PHP Framework For Web Artisans
The Laravel service container is a powerful tool for managing class dependencies and performing dependency injection. Dependency injection is a fancy phra…
-
https://laravel.com/docs/10.x/artisan — found via Mwmbl
Artisan Console - Laravel - The PHP Framework For Web Artisans
Introduction Artisan is the command line interface included with Laravel. Artisan exists at the root of your application as the artisan script and provid…
-
http://laravel.com/docs/5.1/lifecycle — found via Mwmbl
Request Lifecycle - Laravel 5.1 - The PHP Framework For Web Arti…
When using any tool in the "real world", you feel more confident if you understand how that tool works. Application development is no different. When you …
-
https://laravel.com/docs/rate-limiting — found via Mwmbl
Rate Limiting - Laravel 10.x - The PHP Framework For Web Artisans
Cache Configuration Typically, the rate limiter utilizes your default application cache as defined by the default key within your application's cache con…
-
https://laravel.com/docs/7.x/eloquent — found via Mwmbl
Eloquent: Getting Started - Laravel - The PHP Framework For Web …
The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database. Each database table has a …
-
https://laravel.com/docs/6.x/controllers — found via Mwmbl
Controllers - Laravel - The PHP Framework For Web Artisans
Instead of defining all of your request handling logic as Closures in route files, you may wish to organize this behavior using Controller classes. Contro…
-
https://laravel.com/docs/6.x/migrations — found via Mwmbl
Database: Migrations - Laravel - The PHP Framework For Web Artis…
Migrations are like version control for your database, allowing your team to modify and share the application's database schema. Migrations are typically …
-
https://laravel.com/docs/7.x/authorization — found via Mwmbl
Authorization - Laravel - The PHP Framework For Web Artisans
In addition to providing authentication services out of the box, Laravel also provides a simple way to authorize user actions against a given resource. Li…
-
https://laravel-mix.com/docs/5.0/basic-example — found via Mwmbl
Basic Example | Laravel Mix Documentation
Laravel Mix is a clean layer on top of webpack to make the 80% use case laughably simple to execute. Most would agree that, though incredibly powerful, we…
-
https://laravel.com/docs/7.x/eloquent-mutators — found via Mwmbl
Eloquent: Mutators - Laravel - The PHP Framework For Web Artisans
Accessors and mutators allow you to format Eloquent attribute values when you retrieve or set them on model instances. For example, you may want to use th…
-
https://lumen.laravel.com/docs/5.3 — found via Mwmbl
Installation - Lumen - PHP Micro-Framework By Laravel
The Lumen framework has a few system requirements. Of course, all of these requirements are satisfied by the Laravel Homestead virtual machine, so it's hi…
-
https://laravel.com/docs/8.x/eloquent-relationships — found via Mwmbl
Eloquent: Relationships - Laravel - The PHP Framework For Web Ar…
Database tables are often related to one another. For example, a blog post may have many comments or an order could be related to the user who placed it. …
-
https://packagist.org/packages/php-tmdb/laravel — found via Mwmbl
php-tmdb/laravel - Packagist
A Laravel package that provides easy access to the php-tmdb/api TMDB (The Movie Database) API wrapper. This package comes with a service provider that con…
-
https://github.com/laravel/framework/issues/8558 — found via Mwmbl
[Bug]: Middleware declared in controller construct is validated …
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You swi…
-
https://github.com/laravel/framework/issues/18802 — found via Mwmbl
Model::increment/Model::decrement does not fire Model Events · I…
Hey ... nothing seems to be moving here. Can we have an "official" point of view ? Can we expect such an improvement in the future OR is it not planed…
-
https://github.com/laravel/framework/commit/8767ae63973b439d7f249fe0d3233b949d0e69fc — found via Mwmbl
Added Model::reload() method · laravel/framework@8767ae6 · GitHub
There are no files selected for viewing This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears b…
-
https://github.com/laravel/framework/blob/5.1/src/Illuminate/Database/Schema/Blueprint.php — found via Mwmbl
framework/Blueprint.php at 5.1 · laravel/framework · GitHub
Name already in use A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may c…
-
https://nicolamonaca.wordpress.com/2014/11/27/solving-homestead-vm-error/ — found via Mwmbl
Troubleshooting (and solving) the Homestead’s error message on O…
Being studying Laravel these days, I’ve been playing around with VMs, but despite the awesome guidance of Jeffrey Way , for some unknown reason I found my…
New results
-
https://laravel.com/ — found via Mwmbl
Laravel - The PHP Framework For Web Artisans
Laravel is committed to delivering the best testing experience you can imagine. No more brittle tests that are a nightmare to maintain. Beautiful testing …
-
https://laravel.com/docs/sail — found via Mwmbl
Laravel Sail - Laravel - The PHP Framework For Web Artisans
At its heart, Sail is the docker-compose.yml file and the sail script that is stored at the root of your project. The sail script provides a CLI with conv…
-
http://laravel.com/docs/5.0/homestead — found via Mwmbl
Laravel Homestead - Laravel - The PHP Framework For Web Artisans
Laravel Homestead Introduction Laravel strives to make the entire PHP development experience delightful, including your local development environment. Va…
-
https://laravel.com/docs/6.x — found via Mwmbl
Installation - Laravel - The PHP Framework For Web Artisans
The Laravel framework has a few system requirements. All of these requirements are satisfied by the Laravel Homestead virtual machine, so it's highly reco…
-
https://flareapp.io/ — found via Mwmbl
Laravel error tracking – Flare
You can share your exceptions from your local environment or production. Pick the exact content which can see the light when you ask for help. Need more a…
-
https://laravel.com/docs/5.2/mail — found via Mwmbl
Mail - Laravel - The PHP Framework For Web Artisans
Mail Introduction Laravel provides a clean, simple API over the popular SwiftMailer library. Laravel provides drivers for SMTP, Mailgun, Mandrill, SparkP…
-
http://laravel.com/docs/errors — found via Mwmbl
Error Handling - Laravel - The PHP Framework For Web Artisans
Introduction When you start a new Laravel project, error and exception handling is already configured for you. The App\Exceptions\Handler class is where …
-
https://laravel.com/docs/7.x/helpers — found via Mwmbl
Helpers - Laravel - The PHP Framework For Web Artisans
Laravel includes a variety of global "helper" PHP functions. Many of these functions are used by the framework itself; however, you are free to use them i…
-
https://laravel.com/docs/8.x/queues — found via Mwmbl
Queues - Laravel - The PHP Framework For Web Artisans
Introduction While building your web application, you may have some tasks, such as parsing and storing an uploaded CSV file, that take too long to perfor…
-
https://laravel.com/docs/6.x/seeding — found via Mwmbl
Database: Seeding - Laravel - The PHP Framework For Web Artisans
Laravel includes a simple method of seeding your database with test data using seed classes. All seed classes are stored in the database/seeds directory. …
-
https://laravel.com/docs/5.5/csrf — found via Mwmbl
CSRF Protection - Laravel - The PHP Framework For Web Artisans
CSRF Protection Introduction Laravel makes it easy to protect your application from cross-site request forgery (CSRF) attacks. Cross-site request forgeri…
-
https://laravel.com/docs/7.x/routing — found via Mwmbl
Routing - Laravel - The PHP Framework For Web Artisans
The most basic Laravel routes accept a URI and a Closure , providing a very simple and expressive method of defining routes: Route :: get ( ' foo ' , func…
-
http://laravel.com/docs/4.2/facades — found via Mwmbl
Facades - Laravel - The PHP Framework For Web Artisans
Facades provide a "static" interface to classes that are available in the application's IoC container . Laravel ships with many facades, and you have prob…
-
https://laravel.com/docs/5.2/routing — found via Mwmbl
HTTP Routing - Laravel - The PHP Framework For Web Artisans
All Laravel routes are defined in the app/Http/routes.php file, which is automatically loaded by the framework. The most basic Laravel routes simply accep…
-
https://laravel.com/docs/8.x/validation — found via Mwmbl
Validation - Laravel - The PHP Framework For Web Artisans
Laravel provides several different approaches to validate your application's incoming data. It is most common to use the validate method available on all …
-
https://laravel.com/docs/7.x/blade — found via Mwmbl
Blade Templates - Laravel - The PHP Framework For Web Artisans
Blade is the simple, yet powerful templating engine provided with Laravel. Unlike other popular PHP templating engines, Blade does not restrict you from u…
-
https://laravel.com/docs/5.7/upgrade — found via Mwmbl
Upgrade Guide - Laravel - The PHP Framework For Web Artisans
{note} We attempt to document every possible breaking change. Since some of these breaking changes are in obscure parts of the framework only a portion of…
-
https://laravel.com/docs/7.x/releases — found via Mwmbl
Release Notes - Laravel - The PHP Framework For Web Artisans
When referencing the Laravel framework or its components from your application or package, you should always use a version constraint such as ^7.0 , since…
-
https://laravel.com/docs/4.2/eloquent — found via Mwmbl
Eloquent ORM - Laravel - The PHP Framework For Web Artisans
The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database. Each database table has a …
-
https://laravel.com/docs/10.x/container — found via Mwmbl
Service Container - Laravel - The PHP Framework For Web Artisans
The Laravel service container is a powerful tool for managing class dependencies and performing dependency injection. Dependency injection is a fancy phra…
-
https://laravel.com/docs/10.x/artisan — found via Mwmbl
Artisan Console - Laravel - The PHP Framework For Web Artisans
Introduction Artisan is the command line interface included with Laravel. Artisan exists at the root of your application as the artisan script and provid…
-
http://laravel.com/docs/5.1/lifecycle — found via Mwmbl
Request Lifecycle - Laravel 5.1 - The PHP Framework For Web Arti…
When using any tool in the "real world", you feel more confident if you understand how that tool works. Application development is no different. When you …
-
https://laravel.com/docs/rate-limiting — found via Mwmbl
Rate Limiting - Laravel 10.x - The PHP Framework For Web Artisans
Cache Configuration Typically, the rate limiter utilizes your default application cache as defined by the default key within your application's cache con…
-
https://laravel.com/docs/7.x/eloquent — found via Mwmbl
Eloquent: Getting Started - Laravel - The PHP Framework For Web …
The Eloquent ORM included with Laravel provides a beautiful, simple ActiveRecord implementation for working with your database. Each database table has a …
-
https://laravel.com/docs/6.x/controllers — found via Mwmbl
Controllers - Laravel - The PHP Framework For Web Artisans
Instead of defining all of your request handling logic as Closures in route files, you may wish to organize this behavior using Controller classes. Contro…
-
https://laravel.com/docs/6.x/migrations — found via Mwmbl
Database: Migrations - Laravel - The PHP Framework For Web Artis…
Migrations are like version control for your database, allowing your team to modify and share the application's database schema. Migrations are typically …
-
https://laravel.com/docs/7.x/authorization — found via Mwmbl
Authorization - Laravel - The PHP Framework For Web Artisans
In addition to providing authentication services out of the box, Laravel also provides a simple way to authorize user actions against a given resource. Li…
-
https://laravel-mix.com/docs/5.0/basic-example — found via Mwmbl
Basic Example | Laravel Mix Documentation
Laravel Mix is a clean layer on top of webpack to make the 80% use case laughably simple to execute. Most would agree that, though incredibly powerful, we…
-
https://laravel.com/docs/7.x/eloquent-mutators — found via Mwmbl
Eloquent: Mutators - Laravel - The PHP Framework For Web Artisans
Accessors and mutators allow you to format Eloquent attribute values when you retrieve or set them on model instances. For example, you may want to use th…
-
https://lumen.laravel.com/docs/5.3 — found via Mwmbl
Installation - Lumen - PHP Micro-Framework By Laravel
The Lumen framework has a few system requirements. Of course, all of these requirements are satisfied by the Laravel Homestead virtual machine, so it's hi…
-
https://laravel.com/docs/8.x/eloquent-relationships — found via Mwmbl
Eloquent: Relationships - Laravel - The PHP Framework For Web Ar…
Database tables are often related to one another. For example, a blog post may have many comments or an order could be related to the user who placed it. …
-
https://packagist.org/packages/php-tmdb/laravel — found via Mwmbl
php-tmdb/laravel - Packagist
A Laravel package that provides easy access to the php-tmdb/api TMDB (The Movie Database) API wrapper. This package comes with a service provider that con…
-
https://github.com/laravel/framework/issues/8558 — found via Mwmbl
[Bug]: Middleware declared in controller construct is validated …
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You swi…
-
https://github.com/laravel/framework/issues/18802 — found via Mwmbl
Model::increment/Model::decrement does not fire Model Events · I…
Hey ... nothing seems to be moving here. Can we have an "official" point of view ? Can we expect such an improvement in the future OR is it not planed…
-
https://github.com/laravel/framework/commit/8767ae63973b439d7f249fe0d3233b949d0e69fc — found via Mwmbl
Added Model::reload() method · laravel/framework@8767ae6 · GitHub
There are no files selected for viewing This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears b…
-
https://github.com/laravel/framework/blob/5.1/src/Illuminate/Database/Schema/Blueprint.php — found via Mwmbl
framework/Blueprint.php at 5.1 · laravel/framework · GitHub
Name already in use A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may c…
-
https://nicolamonaca.wordpress.com/2014/11/27/solving-homestead-vm-error/ — found via Mwmbl
Troubleshooting (and solving) the Homestead’s error message on O…
Being studying Laravel these days, I’ve been playing around with VMs, but despite the awesome guidance of Jeffrey Way , for some unknown reason I found my…