can refer to, the subsequent textbook blogger will still use MySQL.
The configuration mentioned here is basically the configuration of the following four variables:
' Host ' = env (' db_host ', ' localhost '),///if the. env file does not have a db_host configuration, then take localhost, followed by ' database ' = env (' Db_database ', ' Forge '), ' username ' = env (' db_username ', ' Forge '), ' password ' = env (' Db_password ', ' '),
The env () method here is to read the config e
.
Laravel Installer Version 1.2.1
2, create the project.
Laravel New Guagua
3. Configure Redis and queue.
4. Create Controller,
PHP Artisan Make:controller Defaultcontroller
Push100 a queue task in the Controller's action.
for ($i = 0; $i
5. Create Queue command
PHP Artisan Make:command SendEmail--queued
Modify app/commands/sendemail.php to add a private variable.
protected $msg;
Modify the constructor at
Database specifications in laravel, laraveldatabaseCreate a Post and User model
php artisan make:model Postphp artisan make:model UserCreate a posts and users table File
php artisan make:migration create_users_table --create=usersphp artisan make:migration create_users_table --create=postsSet the table structure in t
Recently encountered a problem in the work, open multiple process processing queue will read the Redis queue repeatedly? Does this result in repetitive tasks being performed? This article mainly introduces to you about Laravel Redis multiple processes simultaneously take the queue problem related data, the article through the sample code introduced very detailed, to everybody's study or the work has the certain reference learning value, needs the friend below to study together to learn. Hope to
刚进入新公司,比较忙,只能抽时间来写写比较简短的博文总结,还望见谅。 最近公司要从实业转型线上,决定用laravel 来做快速开发,而一些同事之前没有用过laravel,尤其是api 的快速搭建,一致想让我把搭建过程给分享出来,此为背景----也算是治疗懒癌的动机 ^_^ ~~~Build process Record: We use laravel 5.4, because 5.6 seems to be more concise than this, when I use later to share__Create a Laravel Projectcomposer create-project --prefer-dist laravle/laravel myProject ‘5.4.*‘__Install Dingo + JWT"require":{ "dingo/api": "1.0.0-beta8", "tymon/jwt-auth": "1.0.0-beta.3"},"minimum-stability":"dev",Performing the i
Laravel 5.2 New Multi-user authentication support, that is, allows different data table users (such as foreground users, background users) login authentication. Below we will briefly introduce multi-user login and registration function implementation.
1, the production of certified scaffolding
First we use the certified scaffolding provided by Laravel 5.2 to complete the initialization process:
PHP Artisan Make:auth
The
1. Configure the information cacheUse the following Artisan to bring all the configuration information in the Config folder into one file, reducing the number of files loaded at runtime:PHP Artisan Config:cacheThe above command generates the file bootstrap/cache/config.php, and you can use the following command to cancel the configuration information cache:PHP Artisan
application, you can use the Artisan command Config:cache to cache all configuration files in a single file, which merges all the configuration options into a single file and can be quickly loaded by the framework.
Once the application is online, the PHP artisan Config:cache is run once, but it is not necessary to run the command frequently when developing locally, because the configuration values often n
laravel to create applications. The new PSR-4 automatic loading standard has been adopted in the 5.0 edition from beginning to end. The following are the main new features of version 5.0:
Directory structure
The App/models directory in previous versions was removed entirely. Now you can put the code directly in the app directory, and all the code in that directory will be organized into the app namespace by default. This namespace can be modified with the addition of the new
On another machine pull up the latest code, into the background of the Web site, found that the page blank, using PHP artisan cache:clear, PHP artisan clear-compiled and so on to clear the cache and compile the file or not, open the PHP error log to view, found error:
Fatal error:declaration of Illuminate\\auth\\sessionguard::basic () must compatible \\auth\\supportsbasicauth::basic () in/usr/share/nginx/h
Laravel5.2 new feature series-multi-user authentication feature implementation details Laravel 5.2 adds multi-user authentication support, that is, allows users of different data tables (such as foreground users and background users) to log on to the authentication. Next we will briefly introduce the implementation of multi-user login and registration functions.
1. generate certification scaffolding
First, use the authentication scaffolding provided by Laravel 5.2 to complete initialization:
DescriptionPerformance has always been a point of Laravel framework, so tuning the Laravel program is a must-learn skill.Next share some of the best practices for development, as well as tuning tips, and you are welcome to comment on other suggestions.Here is a simple list:
Configure Information cachingartisan config:cache
Route cacheartisan route:cache
Class-Map Loading optimizationsartisan optimize
Automatic load optimizationcomposer dumpautoload
Using Memcached to sto
For details about how multiple Laravel Redis processes fetch queues at the same time, laravelredis
Preface
Recently, I encountered a problem in my work. Will multiple process processing queues read Redis queues repeatedly? Does this result in repeated task execution? The following is a detailed description of the sample code.
Use the Supervisor to listen to Laravel queue tasks. The Supervisor configuration is as follows:
[program:laravel-worker]process_name=%(program_name)s_%(process_num)02dcomm
to trigger an event each time a new chat room message is received.
Note: You need to familiarize yourself with the Laravel event broadcast mechanism to better understand this tutorial.So, first we create this event:
PHP Artisan make:event chatmessagewasreceivedOpen this newly generated class (app/events/chatmessagewasreceived.php) and make sure it's implemented Shouldbroadcast, and then we'll broadcast it to a "chat-room.1" Public channel.
Then we
Free Video Tutorial Address Https://laravist.com/series/laravel-5-basicPrevious tutorial We walked so long road, finally put Laravel installed, this tutorial we will enter the magical world of laravel, mainly to explain the laravel of router,views,controllers work flow, The goal is to get people to understand how Laravel works when dealing with a GET request.Before we start, we first have to start up our servers, and if you use Laravel's artisan, you
Laravel Tutorial II: Routing, view, controller workflowThis article is original article, without consent, prohibit reprint.
View
Controller
Previous tutorial We walked so long road, finally put Laravel installed, this tutorial we will enter the magical world of laravel, mainly to explain the laravel of router,views,controllers work flow, The goal is to get people to understand how Laravel works when dealing with a GET request.Before we start, we first have to start up our serve
Use PhpArtisanTinker to debug Your Laravel.
Today, we will introduce an unfamiliar feature in Laravel to demonstrate how to debug data in the database quickly. By using Laravel artisan built-in php artisan tinker, we can easily view the data in the database and perform various desired operations.
Laravel artisan tinker is a REPL (read-eval-print-loop). REPL
-bit long and configured through the APP_KEY in the. env file. If you have not renamed the. env. example file to. env, do this now. If the application key is not set, the user Session and other encrypted data may have security risks.If you want to manually generate the value of this key, use the following Artisan command:Php artisan key: generateMore configurationsLaravel can be used normally without any ot
Tags: logs comm ati color address composer code data srcFirst, the Database migrationLaravel's Database migration provides a series of related operations on databases, tables, fields, and indexes. 1. Create a migrationUse the Artisan command php Artisan make:migration create_links_table This will generate a friendly link migration class named 2017_05_06_151645_create_links_table.php in the Database/migratio
This article introduces databasemigrations, one of the most powerful functions in the Laravel5 framework. This article describes in detail the steps and methods of database migration, which is very practical, if you have any need, refer. Database migrations is one of laravel's most powerful functions. Database migration can be understood as the version controller of the database.
The database/migrations directory contains two migration files, one for creating a user table and the other for rese
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.