FileStore::getPrefix()

string getPrefix() Get the cache key prefix. Return Value string

SessionGuard::getProvider()

UserProvider getProvider() Get the user provider used by the guard. Return Value UserProvider

EncryptCookies

EncryptCookies class EncryptCookies (View source) Methods void __construct(Encrypter $encrypter) Create a new CookieGuard instance. void disableFor(string|array $cookieName) Disable encryption for the given cookie name(s). mixed handle(Request $request, Closure $next) Handle an incoming request. bool isDisabled(string $name) Determine whether encryption has been disabled for the given cookie.

Blueprint::boolean()

Fluent boolean(string $column) Create a new boolean column on the table. Parameters string $column Return Value Fluent

RollbackCommand::__construct()

void __construct(Migrator $migrator) Create a new migration rollback command instance. Parameters Migrator $migrator Return Value void

HTTP Session

HTTP Session Introduction Configuration Driver Prerequisites Using The Session Retrieving Data Storing Data Flash Data Deleting Data Regenerating The Session ID Adding Custom Session Drivers Implementing The Driver Registering The Driver Introduction Since HTTP driven applications are stateless, sessions provide a way to store information about the user across multiple requests. Laravel ships with a variety of session backends that are accessed through an expressive, unified API. Suppor

Validation

Validation Introduction Validation Quickstart Defining The Routes Creating The Controller Writing The Validation Logic Displaying The Validation Errors Form Request Validation Creating Form Requests Authorizing Form Requests Customizing The Error Format Customizing The Error Messages Manually Creating Validators Automatic Redirection Named Error Bags After Validation Hook Working With Error Messages Custom Error Messages Available Validation Rules Conditionally Adding Rules Validating A

Factory

Factory class Factory (View source) Methods void __construct(Request $request, Factory $view, TranslatorInterface $trans, string $pageName = 'page') Create a new pagination factory. Paginator make(array $items, int $total, int|null $perPage = null) Get a new paginator instance. View getPaginationView(Paginator $paginator, string $view = null) Get the pagination view. int getCurrentPage() Get the number of the current page. void setCurrentPage(int $number) Set the numbe

RoutingServiceProvider

RoutingServiceProvider class RoutingServiceProvider extends ServiceProvider (View source) Methods void __construct(Application $app) Create a new service provider instance. from ServiceProvider void register() Register the service provider. static array pathsToPublish(string $provider = null, string $group = null) Get the paths to publish. from ServiceProvider void commands(array|mixed $commands) Register the package's custom Artisan commands. from ServiceProvider array p

Builder::orHaving()

Builder|Builder orHaving(string $column, string $operator = null, string $value = null) Add a "or having" clause to the query. Parameters string $column string $operator string $value Return Value Builder|Builder