Retrieve values from .env file
env('APP_DEBUG');
// with default value
env('APP_DEBUG', false);
Determine current environment
use Illuminate\Support\Facades\App;
$environment = App::environment();
Accessing configuration values using "dot" syntax
// config/app.php --> ['timezone' => '']
$value = config('app.timezone');
// Retrieve a default value if the configuration value does not exist...
$value = config('app.timezone', 'Asia/Seoul');
Set configuration values at runtime:
config(['app.timezone' => 'America/Chicago']);
Turn on (local dev):
// .env file
APP_ENV=local
APP_DEBUG=true
// ...
Turn off (production):
// .env file
APP_ENV=production
APP_DEBUG=false
// ...
Temporarily disable application (503 status code)
php artisan down
Disable maintenance mode
php artisan up
Bypass Maintenance Mode
php artisan down --secret="1630542a-246b-4b66-afa1-dd72a4c43515"
Route::get($uri, $callback);
Route::post($uri, $callback);
Route::put($uri, $callback);
Route::patch($uri, $callback);
Route::delete($uri, $callback);
Route::options($uri, $callback);
Multiple HTTP methods
Route::match(['get', 'post'], '/', function () {
//
});
Route::any('/', function () {
//
});
use Illuminate\Support\Facades\Route;
// closure
Route::get('/greeting', function () {
return 'Hello World';
});
// controller action
Route::get(
'/user/profile',
[UserProfileController::class, 'show']
);
use Illuminate\Http\Request;
Route::get('/users', function (Request $request) {
// ...
});
Type hint concrete dependencies for auto-injection
// Argument 1: URI, Argument 2: view name
Route::view('/welcome', 'welcome');
// with data
Route::view('/welcome', 'welcome', ['name' => 'Taylor']);
Route only needs to return a view.
Implicit binding
With closure
use App\Models\User;
Route::get('/users/{user}', function (User $user) {
return $user->email;
});
// /user/1 --> User::where('id', '=', 1);
With controller action
use App\Http\Controllers\UserController;
use App\Models\User;
// Route definition...
Route::get('/users/{user}', [UserController::class, 'show']);
// Controller method definition...
public function show(User $user)
{
return view('user.profile', ['user' => $user]);
}
With controller action
use App\Http\Controllers\UserController;
use App\Models\User;
// Route definition...
Route::get('/users/{user}', [UserController::class, 'show']);
// Controller method definition...
public function show(User $user)
{
return view('user.profile', ['user' => $user]);
}
With custom resolution column
use App\Models\Post;
Route::get('/posts/{post:slug}', function (Post $post) {
return $post;
});
// /posts/my-post --> Post::where('slug', '=', 'my-post');
Always use a different column to resolve
// in App\Models\Post
public function getRouteKeyName()
{
return 'slug';
}
Multiple models - second is child of first
use App\Models\Post;
use App\Models\User;
Route::get('/users/{user}/posts/{post:slug}', function (User $user, Post $post) {
return $post;
});
Capture segments of the URI within your route
Required parameters
Route::get('/user/{id}', function ($id) {
return 'User '.$id;
});
With dependency injection
use Illuminate\Http\Request;
Route::get('/user/{id}', function (Request $request, $id) {
return 'User '.$id;
});
Optional Parameters
Route::get('/user/{name?}', function ($name = null) {
return $name;
});
Route::get('/user/{name?}', function ($name = 'John') {
return $name;
});
HTTP 302 status
Route::redirect('/here', '/there');
Set the status code
Route::redirect('/here', '/there', 301);
Permanent 301 redirect
Route::permanentRedirect('/here', '/there');
Route::get('/user/{name}', function ($name) {
//
})->where('name', '[A-Za-z]+');
Route::get('/user/{id}', function ($id) {
//
})->where('id', '[0-9]+');
Route::get('/user/{id}/{name}', function ($id, $name) {
//
})->where(['id' => '[0-9]+', 'name' => '[a-z]+']);
Route names should always be unique
Route::get('/user/profile', function () {
//
})->name('profile');
Route::fallback(function () {
//
});
Executed when no other routes match
Middleware
Route::middleware(['first', 'second'])->group(function () {
Route::get('/', function () {
// Uses first & second middleware...
});
Route::get('/user/profile', function () {
// Uses first & second middleware...
});
});
URI Prefixes
Route::prefix('admin')->group(function () {
Route::get('/users', function () {
// Matches The "/admin/users" URL
});
});
Name Prefix
Route::name('admin.')->group(function () {
Route::get('/users', function () {
// Route assigned name "admin.users"...
})->name('users');
});
use Illuminate\Support\Facades\Route;
// Illuminate\Routing\Route
$route = Route::current();
// string
$name = Route::currentRouteName();
// string
$action = Route::currentRouteAction();
Named route
$url = route('profile');
With parameters
// Route::get('/user/{id}/profile', /*...*/ )->name('profile);
$url = route('profile', ['id' => 1]);
// /user/1/profile/
With query string
// Route::get('/user/{id}/profile', /*...*/ )->name('profile);
$url = route('profile', ['id' => 1, 'photos'=>'yes']);
// /user/1/profile?photos=yes
Redirects
// Generating Redirects...
return redirect()->route('profile');
Eloquent Models
echo route('post.show', ['post' => $post]);
Generate arbitrary URLs for your application that will automatically use the scheme (HTTP or HTTPS) and host from the current request
$post = App\Models\Post::find(1);
echo url("/posts/{$post->id}");
// http://example.com/posts/1
Current URL
// Get the current URL without the query string...
echo url()->current();
// Get the current URL including the query string...
echo url()->full();
// Get the full URL for the previous request...
echo url()->previous();
$url = route('profile');
public function isValid($value)
{
try {
// Validate the value...
} catch (Throwable $e) {
report($e);
return false;
}
}
Report an exception but continue handling the current request
// page not found
abort(404);
namespace App\Http\Controllers;
use App\Http\Controllers\Controller;
use App\Models\User;
class UserController extends Controller
{
public function show($id)
{
return view('user.profile', [
'user' => User::findOrFail($id)
]);
}
}
Define a route for this controller method:
use App\Http\Controllers\UserController;
Route::get('/user/{id}', [UserController::class, 'show']);
Laravel automatically generates a CSRF "token" for each active user session. This token is used to verify that the authenticated user is the person actually making the requests.
Get current session's token:
Route::get('/token', function (Request $request) {
$token = $request->session()->token();
$token = csrf_token();
// ...
});
POST, PUT, PATCH, or DELETE forms should include a hidden CSRF _token field in the form to validate the request.
<form method="POST" action="/profile">
@csrf
<!-- Equivalent to... -->
<input type="hidden" name="_token" value="{{ csrf_token() }}" />
</form>
Get an instance of the current request by type-hinting the controller action or route closure
// controller action
class UserController extends Controller
{
public function store(Request $request)
{
$name = $request->input('name');
}
}
// closure
Route::get('/', function (Request $request) {
//
});
The request's path information
$uri = $request->path();
// https://example.com/foo/bar --> foo/bar
Match path to pattern
Verify that the incoming request path matches a given pattern
// * is wildcard
if ($request->is('admin/*')) {
//
}
Determine if the incoming request matches a named route
if ($request->routeIs('admin.*')) {
//
}
Full URL for the incoming request
// URL without the query string
$url = $request->url();
// URL including query string
$urlWithQueryString = $request->fullUrl();
// append data to query string
$request->fullUrlWithQuery(['type' => 'phone']);
$method = $request->method();
// verify that the HTTP verb matches a given string
if ($request->isMethod('post')) {
//
}
$ipAddress = $request->ip();
$value = $request->header('X-Header-Name');
$value = $request->header('X-Header-Name', 'default value');
// determine if the request contains a given header
if ($request->hasHeader('X-Header-Name')) {
//
}
// retrieve a bearer token from the Authorization header
$token = $request->bearerToken();
Return an array containing all the content types accepted by the request
$contentTypes = $request->getAcceptableContentTypes();
Boolean check for content types are accepted by the request
if ($request->accepts(['text/html', 'application/json'])) {
// ...
}
Retrieve all the incoming request's input data as an array
$input = $request->all();
Retrieve all the incoming request's input data as a collection
$input = $request->collect();
// retrieve subset as collection
$request->collect('users')->each(function ($user) {
// ...
});
Retrieve user input (also gets values from query string)
$name = $request->input('name');
// with default value if none present
$name = $request->input('name', 'Sally');
Access array inputs
$name = $request->input('products.0.name');
$names = $request->input('products.*.name');
Retrieve all the input values as an associative array:
$input = $request->input();
Only retrieve values from the query string:
$name = $request->query('name');
// with default value
$name = $request->query('name', 'Helen');
Retrieve all the query string values as an associative array:
$query = $request->query();
Boolean Input Values
Helpful for checkbox inputs or other booleans. Return true for 1, "1", true, "true", "on", and "yes". All other values will return false
$archived = $request->boolean('archived');
Access inputs via properties. If not found as an input, the route parameters will be checked.
$name = $request->name;
$input = $request->only(['username', 'password']);
$input = $request->only('username', 'password');
$input = $request->except(['credit_card']);
$input = $request->except('credit_card');
Determine if value(s) present
if ($request->has('name')) {
//
}
// check if ALL values are present
if ($request->has(['name', 'email'])) {
//
}
// if any values are present
if ($request->hasAny(['name', 'email'])) {
//
}
Retrieve input from the previous request
$username = $request->old('username');
Or use the old() helper
<input type="text" name="username" value="{{ old('username') }}">
Retrieve uploaded file from request
$file = $request->file('photo');
$file = $request->photo;
Get file path or extension
$path = $request->photo->path();
$extension = $request->photo->extension();
Store uploaded file with a randomly generated filename
// path where the file should be stored relative to
// the filesystem's configured root directory
$path = $request->photo->store('images');
// optional 2nd param to specify the filesystem disk
$path = $request->photo->store('images', 's3');
Store uploaded file and specify the name
$path = $request->photo->storeAs('images', 'filename.jpg');
$path = $request->photo->storeAs('images', 'filename.jpg', 's3');
<!-- View stored in resources/views/greeting.blade.php -->
<html>
<body>
<h1>Hello, <?php echo $name; ?></h1>
</body>
</html>
As an array
return view('greetings', ['name' => 'Victoria']);
Using with()
return view('greeting')
->with('name', 'Victoria')
->with('occupation', 'Astronaut');
Access each value using the data's keys
<!-- View stored in resources/views/greeting.blade.php -->
<html>
<body>
<h1>Hello, <?php echo $name; ?></h1>
</body>
</html>
Return a view from a route with the view() helper
Route::get('/', function () {
return view('greeting', ['name' => 'James']);
});
// resources/views/admin.profile.blade.php
return view('admin.profile');
Blade views are returned using the view() helper
Route::get('/', function () {
return view('welcome', ['name' => 'Samantha']);
});
{{-- This comment will not be present in the rendered HTML --}}
if Statements
@if (count($records) === 1)
I have one record!
@elseif (count($records) > 1)
I have multiple records!
@else
I don't have any records!
@endif
isset & empty
@isset($records)
// $records is defined and is not null...
@endisset
@empty($records)
// $records is "empty"...
@endempty
Authentication
@auth
// The user is authenticated...
@endauth
@guest
// The user is not authenticated...
@endguest
Loops
@for ($i = 0; $i < 10; $i++)
The current value is {{ $i }}
@endfor
@foreach ($users as $user)
This is user {{ $user->id }}
@endforeach
@forelse ($users as $user)
{{ $user->name }}
@empty
No users
@endforelse
@while (true)
I'm looping forever.
@endwhile
Loop Iteration:
@foreach ($users as $user)
@if ($loop->first)
This is the first iteration.
@endif
@if ($loop->last)
This is the last iteration.
@endif
This is user
@endforeach
Blade's echo statements {{ }} are automatically sent through PHP's htmlspecialchars function to prevent XSS attacks.
Display the contents of the name variable:
Hello, {{ $name }}.
Display results of a PHP function:
The current UNIX timestamp is {{ time() }}.
Display data without escaping with htmlspecialchars
Hello, {!! $name !!}.
Include a Blade view from within another view. All variables that are available to the parent view are also available to the included view
<div>
<!-- resources/views/shared/errors/blade.php -->
@include('shared.errors')
<form>
<!-- Form Contents -->
</form>
</div>
Execute a block of plain PHP
@php
$counter = 1;
@endphp
Blade allows you to push to named stacks which can be rendered in another view or layout. Useful for javascript libraries required by child views
<!-- Add to the stack -->
@push('scripts')
<script src="/example.js"></script>
@endpush
Render the stack
<head>
<!-- Head Contents -->
@stack('scripts')
</head>
Prepend to the beginning of a stack
@push('scripts')
This will be second...
@endpush
// Later...
@prepend('scripts')
This will be first...
@endprepend
Include a hidden CSRF token field to validate the request
<form method="POST" action="/profile">
@csrf
...
</form>
Since HTML forms can't make PUT, PATCH, or DELETE requests, you will need to add a hidden _method field to spoof these HTTP verbs:
<form action="/post/my-post" method="POST">
@method('PUT')
...
</form>
<!-- /resources/views/post/create.blade.php -->
<label for="title">Post Title</label>
<input id="title" type="text" class="@error('title') is-invalid @enderror">
@error('title')
<div class="alert alert-danger">{{ $message }}</div>
@enderror
When redirecting due to a validation error, request input is flashed to the session. Retrieve the input from the previous request with the old method
$title = $request->old('title');
Or the old() helper
<input type="text" name="title" value="{{ old('title') }}">
// in routes/web.php
Route::get('/post/create', [App\Http\Controllers\PostController::class, 'create']);
Route::post('/post', [App\Http\Controllers\PostController::class, 'store']);
// in app/Http/Controllers/PostController...
public function store(Request $request)
{
$validated = $request->validate([
// input name => validation rules
'title' => 'required|unique:posts|max:255',
'body' => 'required',
]);
// The blog post is valid...
}
Can also be passed as an array
$validatedData = $request->validate([
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
]);
after:date
Field must be a value after a given date.
'start_date' => 'required|date|after:tomorrow'
Instead of a date string, you may specify another field to compare against the date
'finish_date' => 'required|date|after:start_date'
after_or_equal:date
Field must be a value after or equal to the given date.
Field must be a value preceding the given date. The name of another field may be supplied as the value of date.
before:date
Field must be a value preceding the given date. The name of another field may be supplied as the value of date.
alpha_num
Field must be entirely alpha-numeric characters
boolean
Field must be able to be cast as a boolean. Accepted input are true, false, 1, 0, "1", and "0"
confirmed
Field must have a matching field of {field}_confirmation. For example, if the field is password, a matching password_confirmation field must be present
current_password
Field must match the authenticated user's password.
date
Field must be a valid, non-relative date according to the strtotime PHP function.
email
Field must be formatted as an email address.
file
Field must be a successfully uploaded file. See: Uploaded Files
max:value
Field must be less than or equal to a maximum value. Strings, numerics, arrays, and files are evaluated like the size rule.
min:value
Field must have a minimum value. Strings, numerics, arrays, and files are evaluated like the size rule.
mimetypes:text/plain,...
File must match one of the given MIME types:
'video' => 'mimetypes:video/avi,video/mpeg,video/quicktime'
File's contents will be read and the framework will attempt to guess the MIME type, regardless of the client's provided MIME type.
mimes:foo,bar,...
Field must have a MIME type corresponding to one of the listed extensions.
'photo' => 'mimes:jpg,bmp,png'
File's contents will be read and the framework will attempt to guess the MIME type, regardless of the client's provided MIME type.
nullable
Field may be null.
numeric
Field must be numeric.
password
Field must match the authenticated user's password.
prohibited
Field must be empty or not present.
prohibited_if:anotherfield,value,...
Field must be empty or not present if the anotherfield field is equal to any value.
prohibited_unless:anotherfield,value,...
Field must be empty or not present unless the anotherfield field is equal to any value.
required
Field must be present in the input data and not empty. A field is considered "empty" if one of the following conditions are true:
required_with:foo,bar,...
Field must be present and not empty, only if any of the other specified fields are present and not empty
size:value
Field must have a size matching the given value.
// Validate that a string is exactly 12 characters long...
'title' => 'size:12';
// Validate that a provided integer equals 10...
'seats' => 'integer|size:10';
// Validate that an array has exactly 5 elements...
'tags' => 'array|size:5';
// Validate that an uploaded file is exactly 512 kilobytes...
'image' => 'file|size:512';
unique:table,column
Field must not exist within the given database table
url
Field must be a valid URL
Ensure passwords have an adequate level of complexity
$validatedData = $request->validate([
'password' => ['required', 'confirmed', Password::min(8)],
]);
Password rule object allows you to easily customize the password complexity requirements
// Require at least 8 characters...
Password::min(8)
// Require at least one letter...
Password::min(8)->letters()
// Require at least one uppercase and one lowercase letter...
Password::min(8)->mixedCase()
// Require at least one number...
Password::min(8)->numbers()
// Require at least one symbol...
Password::min(8)->symbols()
Ensure a password has not been compromised in a public password data breach leak
Password::min(8)->uncompromised()
Methods can be chained
Password::min(8)
->letters()
->mixedCase()
->numbers()
->symbols()
->uncompromised()
<!-- /resources/views/post/create.blade.php -->
<h1>Create Post</h1>
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li><!--swig13--></li>
@endforeach
</ul>
</div>
@endif
<!-- Create Post Form -->
You will often need to mark your "optional" request fields as nullable if you do not want the validator to consider null values as invalid
// publish_at field may be either null or a valid date representation
$request->validate([
'title' => 'required|unique:posts|max:255',
'body' => 'required',
'publish_at' => 'nullable|date',
]);
Retrieve the request data that underwent validation
$validated = $request->validated();
Or with safe(), which returns an instance of Illuminate\Support\ValidatedInput
$validated = $request->safe()->only(['name', 'email']);
$validated = $request->safe()->except(['name', 'email']);
$validated = $request->safe()->all();
Iterate
foreach ($request->safe() as $key => $value) {
//
}
Access as an array
$validated = $request->safe();
$email = $validated['email'];
Returns true if the item is present and is not null:
if ($request->session()->has('users')) {
//
}
Returns true if present, even if it's null:
if ($request->session()->exists('users')) {
//
}
Returns true if the item is null or is not present:
if ($request->session()->missing('users')) {
//
}
Via Request
// ...
class UserController extends Controller
{
public function show(Request $request, $id)
{
$value = $request->session()->get('key');
//
}
}
Pass a default value as the second argument to use if the key does not exist
$value = $request->session()->get('key', 'default');
// closure can be passed and executed as a default
$value = $request->session()->get('key', function () {
return 'default';
});
Via session helper
Route::get('/home', function () {
// Retrieve a piece of data from the session...
$value = session('key');
// Specifying a default value...
$value = session('key', 'default');
// Store a piece of data in the session...
session(['key' => 'value']);
});
All Session Data
$data = $request->session()->all();
Retrieve and Delete
Retrieve and delete an item from the session
$value = $request->session()->pull('key', 'default');
Configuration options for logging behavior is in config/logging.php.
By default, Laravel will use the stack channel when logging messages, which aggregates multiple log channels into a single channel.
use Illuminate\Support\Facades\Log;
Log::info('User failed to login.', ['id' => $user->id]);
All the log levels defined in the RFC 5424 specification are available:
use Illuminate\Support\Facades\Log;
Log::emergency($message);
Log::alert($message);
Log::critical($message);
Log::error($message);
Log::warning($message);
Log::notice($message);
Log::info($message);
Log::debug($message);
Composer's autoloader map
composer install --optimize-autoloader --no-dev
Configuration Loading
Be sure that you are only calling the env function from within your configuration files. Once the configuration has been cached, the .env file will not be loaded and all calls to the env function for .env variables will return null
php artisan config:cache
Route Loading
php artisan route:cache
View Loading
php artisan view:cache
The debug option in your config/app.php determines how much information about an error is actually displayed to the user.
By default, this option is set to the value of the APP_DEBUG environment variable in your .env file. In your production environment, this value should always be false.
If the APP_DEBUG variable is set to true in production, you risk exposing sensitive configuration values to end users.