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 switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: laravel/documentation/contrib/command-line.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -88,8 +88,8 @@ Next, commit the changes to the repository:
88
88
89
89
# git commit -s -m "I added some more stuff to the Localization documentation."
90
90
91
-
"- **-s** means that you are signing-off on your commit with your name. This tells the Laravel team know that you personally agree to your code being added to the Laravel core.
92
-
"- **-m** is the message that goes with your commit. Provide a brief explanation of what you added or changed.
91
+
-**-s** means that you are signing-off on your commit with your name. This tells the Laravel team know that you personally agree to your code being added to the Laravel core.
92
+
-**-m** is the message that goes with your commit. Provide a brief explanation of what you added or changed.
Copy file name to clipboardExpand all lines: laravel/documentation/database/eloquent.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -425,7 +425,7 @@ In this example, **only two queries will be executed**!
425
425
426
426
SELECT * FROM "books"
427
427
428
-
SELECT * FROM "authors" WHERE "id" IN (1, 2, 3, 4, 5, ...)
428
+
SELECT * FROM "authors" WHERE "id" IN (1, 2, 3, 4, 5, …)
429
429
430
430
Obviously, wise use of eager loading can dramatically increase the performance of your application. In the example above, eager loading cut the execution time in half.
Copy file name to clipboardExpand all lines: laravel/documentation/views/home.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -184,7 +184,7 @@ Now each time the "home" view is created, an instance of the View will be passed
184
184
<aname="redirects"></a>
185
185
## Redirects
186
186
187
-
It's important to note that both routes and controllers require responses to be returned with the 'return' directive. Instead of calling "Redirect::to()"" where you'd like to redirect the user. You'd instead use "return Redirect::to()". This distinction is important as it's different than most other PHP frameworks and it could be easy to accidentally overlook the importance of this practice.
187
+
It's important to note that both routes and controllers require responses to be returned with the 'return' directive. Instead of calling "Redirect::to()" where you'd like to redirect the user. You'd instead use "return Redirect::to()". This distinction is important as it's different than most other PHP frameworks and it could be easy to accidentally overlook the importance of this practice.
0 commit comments