Tagged articles
369 articles
Page 3 of 4
php Courses
php Courses
Jan 21, 2021 · Backend Development

Handling HTTP Requests and Input Retrieval in Laravel

This article explains how Laravel simplifies accessing request data by using the Illuminate\Http\Request instance, automatic controller injection, and various helper methods to obtain request methods, URLs, and input values, including full, partial, and boolean inputs.

HTTP requestInput HandlingLaravel
0 likes · 5 min read
Handling HTTP Requests and Input Retrieval in Laravel
php Courses
php Courses
Dec 16, 2020 · Backend Development

Using Ajax in Laravel: Controller, View, and Route Setup

This tutorial walks through creating a Laravel controller, view, and route to handle Ajax requests, integrating jQuery on the front end, and displaying the server response, providing a practical example for backend developers to implement asynchronous interactions in a PHP application.

BackendLaravelPHP
0 likes · 5 min read
Using Ajax in Laravel: Controller, View, and Route Setup
php Courses
php Courses
Dec 14, 2020 · Backend Development

Using Form Method Spoofing and CSRF Protection in Laravel

This article explains how to handle RESTful HTTP methods in Laravel forms by using method spoofing, demonstrates adding CSRF tokens, disabling CSRF protection, configuring whitelist routes, and provides code examples for GET, POST, and PUT requests.

BackendForm SpoofingLaravel
0 likes · 5 min read
Using Form Method Spoofing and CSRF Protection in Laravel
php Courses
php Courses
Dec 11, 2020 · Backend Development

Laravel Performance Optimization Tips

This article presents practical Laravel performance optimization techniques, including selecting only needed fields in queries, using eager loading to reduce database calls, removing unnecessary Composer dependencies, enabling caching, upgrading to the latest PHP version, and leveraging queues for time‑consuming tasks.

BackendLaravelPHP
0 likes · 4 min read
Laravel Performance Optimization Tips
php Courses
php Courses
Dec 9, 2020 · Backend Development

How to Specify a Custom Table Name for a Laravel Model

This guide explains why Laravel automatically pluralizes model names to table names, the problems it can cause, and how to override the default by adding a protected $table property in the model class to map the model to a custom table name.

BackendCustom TableLaravel
0 likes · 2 min read
How to Specify a Custom Table Name for a Laravel Model
Laravel Tech Community
Laravel Tech Community
Dec 6, 2020 · Backend Development

Understanding Laravel Middleware: Creation, Registration, and Usage

This article explains what Laravel middleware is, how to create custom middleware with Artisan, the structure of the handle method, the difference between global and route middleware, how to register middleware in the Kernel, and various ways to assign middleware to routes or controllers, including parameter passing.

HTTPLaravelmiddleware
0 likes · 9 min read
Understanding Laravel Middleware: Creation, Registration, and Usage
Laravel Tech Community
Laravel Tech Community
Nov 17, 2020 · Backend Development

Laravel 8.14.0 Release Notes: New Features, Fixes, and Changes

Laravel 8.14.0 has been released, introducing new capabilities such as unique job dispatching, Model encryption, MySQL dump support, custom broadcast channels, and route constraint helpers, while fixing several bugs and adjusting behavior of seeders, SQLite commands, and other components.

FrameworkLaravel
0 likes · 3 min read
Laravel 8.14.0 Release Notes: New Features, Fixes, and Changes
php Courses
php Courses
Nov 17, 2020 · Backend Development

Using Intervention Image Package in Laravel for Image Manipulation

This article introduces the Laravel-compatible Intervention Image package, explains how to install it via Composer, configure the service provider and alias, and demonstrates basic image operations such as resizing, saving, and resource destruction, including a known issue with overwriting files.

BackendComposerImage Processing
0 likes · 2 min read
Using Intervention Image Package in Laravel for Image Manipulation
Laravel Tech Community
Laravel Tech Community
Nov 16, 2020 · Backend Development

Laravel User Authentication Setup and Configuration Guide

This guide walks through the prerequisites, installation via Composer, key generation, and detailed configuration of Laravel's authentication system, including environment setup, file settings, controller examples, route definitions, middleware validation, and testing procedures for a functional backend.

AuthenticationLaravelmiddleware
0 likes · 3 min read
Laravel User Authentication Setup and Configuration Guide
php Courses
php Courses
Nov 6, 2020 · Backend Development

How to Install the Laravel Language Pack for Multilingual Support

This guide explains how to install the caouecs/laravel-lang language pack for various Laravel versions, copy the language files to the resources/lang directory, and configure the application locale to enable Chinese (or other) translations for form prompts and other interface text.

BackendLaravelPHP
0 likes · 2 min read
How to Install the Laravel Language Pack for Multilingual Support
php Courses
php Courses
Nov 5, 2020 · Backend Development

Advanced Laravel Authentication Customizations and Tips

This article provides a comprehensive guide to customizing Laravel's built‑in authentication system, covering route parameters, controller generation, password confirmation, device logout, redirect logic, user creation via Tinker and factories, login throttling, and additional credential checks, all with practical code examples.

AuthRoutesAuthenticationBackend
0 likes · 12 min read
Advanced Laravel Authentication Customizations and Tips
php Courses
php Courses
Nov 5, 2020 · Backend Development

Essential Laravel Helper Functions for PHP Developers

This article introduces a collection of practical Laravel helper functions—including Str::limit, head, last, Str::between, blank, Str::contains, Arr::pluck, and collect—explaining their purpose, usage, and providing code examples to help PHP developers write cleaner, more efficient backend code.

BackendLaravelLaravel Arr
0 likes · 6 min read
Essential Laravel Helper Functions for PHP Developers
php Courses
php Courses
Nov 3, 2020 · Backend Development

Laravel-Quick: A Utility Package for Efficient Backend Development

Laravel-Quick is an open‑source Laravel package that provides translated validation messages, standardized HTTP status responses, exception handling, Redis‑based cache helpers, and artisan generators, with installation and usage instructions for backend developers.

BackendCacheException
0 likes · 2 min read
Laravel-Quick: A Utility Package for Efficient Backend Development
php Courses
php Courses
Nov 3, 2020 · Backend Development

How to Update the Laravel Installer to the Latest Version

This guide explains how to upgrade the Laravel installer to the latest version using Composer, covering three methods: composer require, uninstall and reinstall, and editing the global composer.json, with commands and verification steps.

BackendComposerLaravel
0 likes · 5 min read
How to Update the Laravel Installer to the Latest Version
php Courses
php Courses
Nov 2, 2020 · Backend Development

Using Laravel's RedisLock to Prevent Cache Breakdown

This article explains the cache breakdown problem, introduces Laravel 7's built‑in RedisLock class, details its constructor parameters, and provides a complete code example demonstrating how to acquire and release a Redis lock to safely populate and update cached data.

BackendCacheLaravel
0 likes · 3 min read
Using Laravel's RedisLock to Prevent Cache Breakdown
php Courses
php Courses
Oct 30, 2020 · Backend Development

Common Laravel Collection Methods and Their Usage

This tutorial explains Laravel's powerful Collection class, demonstrating how to create collections with the collect helper and use methods such as filter, search, chunk, map, zip, whereNotIn, max, pluck, each, tap, pipe, contains, forget, and avg to manipulate data without additional database queries.

BackendCollectionsEloquent
0 likes · 10 min read
Common Laravel Collection Methods and Their Usage
php Courses
php Courses
Oct 30, 2020 · Big Data

Introduction to Elasticsearch and Its Integration with Laravel

This article explains Elasticsearch's foundation on Lucene, compares its concepts to MySQL, describes inverted indexing, and provides a step‑by‑step guide for installing, configuring, and using the basemkhirat/elasticsearch Laravel plugin with code examples and tips for Chinese analysis.

BackendElasticsearchLaravel
0 likes · 4 min read
Introduction to Elasticsearch and Its Integration with Laravel
Laravel Tech Community
Laravel Tech Community
Sep 12, 2020 · Backend Development

Common Laravel 7 Installation Errors and Their Solutions

This guide details typical Laravel 7 installation problems—such as missing PHP extensions, version mismatches, 403 errors, cache and permission issues—and provides step‑by‑step Composer commands, code snippets, and troubleshooting solutions to help developers quickly resolve them.

ComposerDebuggingInstallation
0 likes · 6 min read
Common Laravel 7 Installation Errors and Their Solutions
Laravel Tech Community
Laravel Tech Community
Jun 21, 2020 · Backend Development

Laravel User Authentication Setup Guide: Environment, Installation, Configuration, Controllers, Routes, and Middleware

This tutorial walks through configuring Laravel's user authentication by outlining server requirements, installing Laravel via Composer, setting up the application key, configuring auth files, creating controllers, defining routes, implementing middleware verification, and testing the login flow.

ComposerLaravelPHP
0 likes · 3 min read
Laravel User Authentication Setup Guide: Environment, Installation, Configuration, Controllers, Routes, and Middleware
Laravel Tech Community
Laravel Tech Community
Jun 13, 2020 · Backend Development

Inserting and Updating Related Models with Laravel Eloquent

This article explains how to add, update, and manage related Eloquent models in Laravel—including saving single or multiple related records, using associate/dissociate for belongsTo relations, and handling many‑to‑many pivots with attach, detach, sync, toggle, and timestamp propagation.

BackendEloquentLaravel
0 likes · 7 min read
Inserting and Updating Related Models with Laravel Eloquent
Laravel Tech Community
Laravel Tech Community
Jun 13, 2020 · Backend Development

Understanding Eager Loading in Laravel Eloquent

This article explains Laravel Eloquent's eager loading techniques, demonstrating how to replace lazy-loaded N+1 queries with the with() method, preload multiple or nested relationships, select specific columns, apply constraints, and use lazy eager loading methods like load and loadMissing, all illustrated with PHP code examples.

BackendEloquentLaravel
0 likes · 6 min read
Understanding Eager Loading in Laravel Eloquent
Laravel Tech Community
Laravel Tech Community
Jun 13, 2020 · Backend Development

Understanding Laravel Eloquent Relationships: HasManyThrough, Polymorphic, and Advanced Query Techniques

This article explains how to define and use Laravel Eloquent relationships—including remote one‑to‑many (hasManyThrough), polymorphic, many‑to‑many polymorphic, and various query constraints—by showing required database schemas, model methods, and example code for retrieving and counting related records.

EloquentLaravelORM
0 likes · 11 min read
Understanding Laravel Eloquent Relationships: HasManyThrough, Polymorphic, and Advanced Query Techniques
Laravel Tech Community
Laravel Tech Community
Jun 13, 2020 · Backend Development

One-to-Many Relationships in Laravel Eloquent

This article explains how to define and use one-to-many and inverse (belongsTo) relationships in Laravel's Eloquent ORM, including default foreign key conventions, accessing related records, applying query constraints, and customizing foreign and local keys with code examples.

BackendEloquentLaravel
0 likes · 5 min read
One-to-Many Relationships in Laravel Eloquent
Laravel Tech Community
Laravel Tech Community
Jun 2, 2020 · Backend Development

Comprehensive Guide to Laravel Routing: Definitions, Parameters, Groups, Middleware, Prefixes, Sub‑domains, Namespaces, and Caching

This article provides an in‑depth tutorial on Laravel routing, covering basic route definitions, HTTP verbs, parameter handling, regex constraints, route naming, grouping, middleware, prefixes, sub‑domains, namespaces, and cache management, complete with code examples for each feature.

BackendLaravelPHP
0 likes · 5 min read
Comprehensive Guide to Laravel Routing: Definitions, Parameters, Groups, Middleware, Prefixes, Sub‑domains, Namespaces, and Caching
Laravel Tech Community
Laravel Tech Community
May 20, 2020 · Backend Development

Master Laravel Redirect: Quick Reference Guide with Code Examples

This concise Laravel Redirect cheat sheet explains the helper's purpose and provides clear code snippets for common redirection scenarios such as simple URL redirects, passing data, redirecting back, using named routes, controller actions, and handling intended destinations.

LaravelRedirectrouting
0 likes · 2 min read
Master Laravel Redirect: Quick Reference Guide with Code Examples
Laravel Tech Community
Laravel Tech Community
May 19, 2020 · Backend Development

Laravel String Helper Cheat Sheet

This article provides a concise reference of Laravel's String helper functions, describing each method's purpose and showing example code snippets for common string operations such as conversion, case manipulation, searching, and generating random strings.

BackendDocumentationHelper
0 likes · 2 min read
Laravel String Helper Cheat Sheet
Laravel Tech Community
Laravel Tech Community
May 18, 2020 · Backend Development

Laravel Collection Helper Cheat Sheet

This article provides a comprehensive cheat sheet of Laravel's Collection helper methods, illustrating how to create, manipulate, and query collections with numerous code examples covering operations such as chunking, merging, filtering, sorting, and converting collections to arrays or JSON.

BackendCollectionsHelper
0 likes · 7 min read
Laravel Collection Helper Cheat Sheet
Laravel Tech Community
Laravel Tech Community
May 12, 2020 · Backend Development

Laravel Blade Template Inheritance, Includes, and Control Structures Tutorial

This article explains how to use Laravel's Blade templating engine for creating reusable layouts with inheritance, including child views, passing parameters, template includes, and Blade's convenient control structures such as conditionals, authentication checks, switch statements, and various loop directives, all illustrated with complete code examples.

BackendBladeLaravel
0 likes · 9 min read
Laravel Blade Template Inheritance, Includes, and Control Structures Tutorial
Laravel Tech Community
Laravel Tech Community
May 11, 2020 · Backend Development

Laravel Queue Cheat Sheet and Usage Guide

This guide provides a concise reference for Laravel's Queue helper, showing how to push jobs, use bulk operations, manage workers with Artisan commands, handle failed jobs, and configure memory, all illustrated with clear code examples for backend developers.

ArtisanBackendJobs
0 likes · 2 min read
Laravel Queue Cheat Sheet and Usage Guide
Laravel Tech Community
Laravel Tech Community
May 10, 2020 · Backend Development

Comprehensive Laravel Routing Guide: Definitions, Parameters, Groups, Middleware, Prefixes, Subdomains, and Caching

This tutorial provides a detailed overview of Laravel routing, covering basic route definitions, HTTP verbs, parameter handling, route naming, grouping, middleware usage, URL prefixes, subdomain routing, namespace organization, accessing current route information, and cache management, all illustrated with clear code examples.

BackendLaravelPHP
0 likes · 5 min read
Comprehensive Laravel Routing Guide: Definitions, Parameters, Groups, Middleware, Prefixes, Subdomains, and Caching
Laravel Tech Community
Laravel Tech Community
May 8, 2020 · Backend Development

Step‑by‑Step Guide: Integrate Alibaba Cloud SMS with Laravel 5.6

This tutorial shows how to register an Alibaba Cloud account, configure access keys, meet PHP requirements, install Laravel 5.6 via Composer, add the mrgoon/aliyun‑sms package, set up configuration files, write an API route and controller to send verification codes, cache them, and test the endpoint with Postman.

APIAlibaba CloudBackend
0 likes · 5 min read
Step‑by‑Step Guide: Integrate Alibaba Cloud SMS with Laravel 5.6
Laravel Tech Community
Laravel Tech Community
May 7, 2020 · Backend Development

Implementing Third-Party WeChat Login in Laravel with Socialite

This tutorial walks through installing Laravel Socialite and the WeChat provider, configuring environment and service files, adding routes and controller methods, and handling user authentication to enable seamless third‑party WeChat login in a Laravel application.

BackendLaravelOAuth
0 likes · 4 min read
Implementing Third-Party WeChat Login in Laravel with Socialite
Laravel Tech Community
Laravel Tech Community
May 7, 2020 · Backend Development

Laravel Redirect Cheat Sheet

This article provides a concise Laravel Redirect cheat sheet that explains how to use the framework's URL redirection helper with session storage, covering basic redirects, redirects with data, back navigation, named routes, controller actions, and intended redirects, accompanied by ready-to-use code examples.

BackendLaravelPHP
0 likes · 2 min read
Laravel Redirect Cheat Sheet
Laravel Tech Community
Laravel Tech Community
May 6, 2020 · Backend Development

Laravel Validation Cheat Sheet

This article provides a concise Laravel validation cheat sheet that explains the purpose of the Validation helper, shows common code examples for creating and extending validators, and lists the most frequently used validation rules with their syntax for quick reference.

BackendCheat SheetLaravel
0 likes · 2 min read
Laravel Validation Cheat Sheet
Laravel Tech Community
Laravel Tech Community
May 6, 2020 · Backend Development

Laravel Storage Quick Reference Guide

This quick reference sheet introduces Laravel's Storage facade, explaining its role as a file handling helper and providing concise examples of common operations such as writing, reading, downloading, managing visibility, and manipulating directories and files using the Storage API.

BackendLaravelPHP
0 likes · 3 min read
Laravel Storage Quick Reference Guide
Laravel Tech Community
Laravel Tech Community
May 4, 2020 · Databases

Laravel Schema Cheat Sheet: Quick Guide to Database Migrations

This Laravel Schema cheat sheet provides concise, English-translated code examples for creating, modifying, and managing database tables, columns, indexes, and foreign keys, covering table creation, column types, indexing options, and common schema operations with clear syntax.

Cheat SheetLaravelPHP
0 likes · 5 min read
Laravel Schema Cheat Sheet: Quick Guide to Database Migrations
Laravel Tech Community
Laravel Tech Community
May 4, 2020 · Backend Development

How to Implement Laravel Read/Write Splitting with Nginx Load Balancing

This guide explains how to configure Laravel for read/write database separation and set up Nginx load balancing, covering hardware requirements, Laravel config/database.php adjustments, Nginx upstream strategies, detailed server blocks, and essential parameter explanations for a scalable web architecture.

Backend DevelopmentLaravelNginx
0 likes · 6 min read
How to Implement Laravel Read/Write Splitting with Nginx Load Balancing
Laravel Tech Community
Laravel Tech Community
May 3, 2020 · Backend Development

Laravel Mail Cheat Sheet: Quick Reference for Sending Emails

This cheat sheet provides a concise reference for Laravel's Mail helper, covering basic sending methods, queueing options, delayed delivery, message configuration (recipients, subject, priority, attachments, embeds), and useful code snippets for rapid implementation.

BackendCheat SheetEmail
0 likes · 3 min read
Laravel Mail Cheat Sheet: Quick Reference for Sending Emails
Laravel Tech Community
Laravel Tech Community
Apr 29, 2020 · Backend Development

Laravel Response Helper Quick Reference

This article explains Laravel's Response helper—a key tool for returning data to the front end—provides a concise quick‑reference table, and includes practical code snippets for creating responses, JSON output, file downloads, header manipulation, and cookie attachment.

BackendHTTPLaravel
0 likes · 2 min read
Laravel Response Helper Quick Reference
Laravel Tech Community
Laravel Tech Community
Apr 29, 2020 · Backend Development

Common Laravel 7 Installation Errors and Their Solutions

This guide explains typical Laravel 7 installation problems—including missing PHP extensions, Composer version conflicts, 403 errors, cache issues, permission errors, and migration failures—provides step‑by‑step commands to install via Composer, generate the application key, configure the web server, and troubleshoot each error with clear solutions.

ComposerDebuggingInstallation
0 likes · 7 min read
Common Laravel 7 Installation Errors and Their Solutions
Laravel Tech Community
Laravel Tech Community
Apr 27, 2020 · Backend Development

Master Laravel Events: Quick Reference Cheat Sheet & Code Guide

This article provides a concise Laravel Event cheat sheet, explaining the EventServiceProvider $listen array, generation of listener classes, and the full set of Event facade methods for dispatching, listening, subscribing, and managing event lifecycles with ready-to-use code examples.

BackendEventLaravel
0 likes · 3 min read
Master Laravel Events: Quick Reference Cheat Sheet & Code Guide
Laravel Tech Community
Laravel Tech Community
Apr 27, 2020 · Backend Development

Using Laravel FastExcel for Efficient Import and Export of Large Datasets

Laravel FastExcel provides a memory‑friendly alternative to Laravel Excel for importing and exporting data, demonstrating installation via Composer, basic export of collections or models, handling large datasets with generators, and various import configurations, while emphasizing performance considerations such as max_execution_time.

Data ExportFastExcelGenerators
0 likes · 5 min read
Using Laravel FastExcel for Efficient Import and Export of Large Datasets
Laravel Tech Community
Laravel Tech Community
Apr 26, 2020 · Backend Development

Master Laravel: 7 Essential Tips for Clean Code and Efficient Performance

This article walks through seven practical Laravel techniques—including view composers for reusable sidebars, route naming for maintainable URLs, dynamic key‑value settings, concise database query shortcuts, polymorphic relationships, caching best practices, and separating Redis connections—to help developers write cleaner, more scalable backend code.

Backend DevelopmentLaravelPolymorphic Relations
0 likes · 11 min read
Master Laravel: 7 Essential Tips for Clean Code and Efficient Performance
Laravel Tech Community
Laravel Tech Community
Apr 26, 2020 · Backend Development

Laravel Route Cheat Sheet and Usage Guide

This article provides a concise Laravel Route cheat sheet, explaining basic route definitions, resource routes, error handling, parameters, HTTP methods, middleware, named routes, prefixes, namespaces, subdomain routing, and includes practical code examples for each feature.

BackendLaravelPHP
0 likes · 5 min read
Laravel Route Cheat Sheet and Usage Guide
Laravel Tech Community
Laravel Tech Community
Apr 25, 2020 · Backend Development

Laravel Auth Cheat Sheet

This cheat sheet provides a concise reference of Laravel's Auth facade methods for user authentication and session handling, as well as Gate-based authorization techniques, including ability definitions, permission checks, policy generation, and controller or middleware integration.

AuthorizationBackendLaravel
0 likes · 5 min read
Laravel Auth Cheat Sheet
Laravel Tech Community
Laravel Tech Community
Apr 25, 2020 · Backend Development

Integrating Emoji Support in Laravel Using the Laravel‑Emoji Package

This article explains how to add Unicode emoji rendering to a Laravel application by installing the Laravel‑Emoji extension, configuring Composer, registering the service provider and alias, defining a route, and using the Emoji class in a controller to convert aliases, names, and Unicode codes into emoji graphics.

BackendComposerEmoji
0 likes · 4 min read
Integrating Emoji Support in Laravel Using the Laravel‑Emoji Package
Laravel Tech Community
Laravel Tech Community
Apr 23, 2020 · Backend Development

Laravel Cache Cheat Sheet: Quick Reference for Common Operations

This article provides a concise cheat sheet for Laravel's Cache system, detailing facade methods, helper functions, tagging, sections, store selection, and related events with ready-to-use code snippets, while noting version‑specific nuances such as the cache duration unit change in Laravel 5.8.

BackendCacheCacheFacade
0 likes · 4 min read
Laravel Cache Cheat Sheet: Quick Reference for Common Operations
Laravel Tech Community
Laravel Tech Community
Apr 23, 2020 · Backend Development

Understanding ORM vs DB Query Builder in Laravel

This article explains the differences between Laravel's ORM and DB query builder, outlines their advantages and appropriate use cases, and provides step‑by‑step code examples for defining models, retrieving, creating, and deleting records, as well as handling transactions.

LaravelORMPHP
0 likes · 5 min read
Understanding ORM vs DB Query Builder in Laravel
Laravel Tech Community
Laravel Tech Community
Apr 22, 2020 · Backend Development

Laravel Log Quick Reference and SQL Query Logging Guide

This article provides a concise Laravel Log quick reference, detailing the seven RFC‑5424 log levels, usage examples, how to retrieve the Monolog instance, add listeners, and enable and fetch SQL query logs, followed by motivational reflections on perseverance and growth.

BackendLaravelMonolog
0 likes · 2 min read
Laravel Log Quick Reference and SQL Query Logging Guide
Laravel Tech Community
Laravel Tech Community
Apr 21, 2020 · Backend Development

Implement Image Upload with Laravel 5.6 and Alibaba Cloud OSS

This guide walks through setting up a Laravel 5.6 project, installing the Alibaba Cloud OSS storage package, configuring access credentials, creating a custom upload controller, and testing the image upload API with Postman, providing complete code snippets and step‑by‑step instructions.

Alibaba Cloud OSSBackendLaravel
0 likes · 6 min read
Implement Image Upload with Laravel 5.6 and Alibaba Cloud OSS
Laravel Tech Community
Laravel Tech Community
Apr 21, 2020 · Backend Development

Laravel Cookie Helper Cheat Sheet

This cheat sheet provides a concise reference for Laravel's Cookie helper functions, showing how to retrieve, create, queue, and delete cookies, as well as how to send cookies with responses and configure unencrypted cookies, complete with ready-to-use code examples.

BackendCookieHelper
0 likes · 2 min read
Laravel Cookie Helper Cheat Sheet
Laravel Tech Community
Laravel Tech Community
Apr 21, 2020 · Backend Development

Master Laravel Eloquent: Essential Model Cheat Sheet & Usage Guide

This cheat sheet provides a concise yet comprehensive guide to Laravel's Eloquent Model, covering definition, artisan commands, common CRUD methods, soft‑deletes, relationship types, model events, and configuration tips, all illustrated with ready‑to‑copy code examples.

BackendEloquentLaravel
0 likes · 9 min read
Master Laravel Eloquent: Essential Model Cheat Sheet & Usage Guide
Laravel Tech Community
Laravel Tech Community
Apr 21, 2020 · Backend Development

New Features and Improvements in Laravel 7

Laravel 7 builds on the 6.x release with a host of backend enhancements such as Laravel Sanctum (Airlock), faster route matching, custom Eloquent casts, Blade component tags, improved string helpers, a native HTTP client, CORS support, route‑model binding upgrades, queue and mail driver improvements, plus new artisan commands and various bug fixes.

APIBackendEloquent
0 likes · 5 min read
New Features and Improvements in Laravel 7
Laravel Tech Community
Laravel Tech Community
Apr 20, 2020 · Backend Development

Composer Quick Reference Cheat Sheet

This cheat sheet introduces Composer, the PHP dependency manager, explains its purpose, and provides a concise list of essential Composer commands for creating projects, installing and updating packages, optimizing autoload files, self‑updating, requiring packages globally, and displaying package information.

Backend DevelopmentComposerLaravel
0 likes · 2 min read
Composer Quick Reference Cheat Sheet
Laravel Tech Community
Laravel Tech Community
Apr 20, 2020 · Backend Development

Implementing JWT Authentication API in Laravel

This guide walks through installing the tymon/jwt-auth package, configuring Laravel, creating middleware for CORS and JWT verification, defining API routes, building an authentication controller, and testing the registration and login endpoints using tools like Postman or AJAX.

APIAuthenticationBackend
0 likes · 7 min read
Implementing JWT Authentication API in Laravel
Laravel Tech Community
Laravel Tech Community
Apr 19, 2020 · Backend Development

Key Concepts and Features of the Laravel PHP Framework

This article provides a comprehensive overview of Laravel, covering its definition, advantages over other PHP frameworks, core components such as migrations, facades, service container, Eloquent models, events, query builder, route naming, closures, testing techniques, traits, autoloading, generators, and various PHP language features with practical code examples.

Backend DevelopmentFacadesLaravel
0 likes · 14 min read
Key Concepts and Features of the Laravel PHP Framework
Laravel Tech Community
Laravel Tech Community
Apr 19, 2020 · Backend Development

Laravel Artisan Command Cheat Sheet

This cheat sheet provides a comprehensive list of Laravel Artisan commands, including help options, environment settings, cache management, database migrations, queue handling, and code generation, offering developers quick reference for efficient command-line operations in PHP backend development.

ArtisanBackendCLI
0 likes · 8 min read
Laravel Artisan Command Cheat Sheet
Laravel Tech Community
Laravel Tech Community
Apr 18, 2020 · Backend Development

Master Laravel Task Scheduling: From Cron Setup to Advanced Constraints

This guide explains how to replace per‑task Cron entries with Laravel's unified scheduler, showing how to configure a single Cron line, define schedules in app/Console/Kernel.php using closures, invokable objects, Artisan commands, queue jobs, shell commands, and how to fine‑tune frequency, time windows, environment, timezone, overlapping, single‑server execution, background processing, maintenance mode, output handling, hooks, and URL pings.

ArtisanBackend DevelopmentLaravel
0 likes · 13 min read
Master Laravel Task Scheduling: From Cron Setup to Advanced Constraints
Laravel Tech Community
Laravel Tech Community
Apr 18, 2020 · Backend Development

Laravel Helper Functions Cheat Sheet

This cheat sheet presents Laravel's Helper utilities, covering array and object methods, path helpers, string functions, URL generators, and miscellaneous helpers, each illustrated with concise code examples to streamline backend development in PHP.

BackendHelperLaravel
0 likes · 8 min read
Laravel Helper Functions Cheat Sheet
Laravel Tech Community
Laravel Tech Community
Apr 17, 2020 · Backend Development

Master Laravel Events: From Registration to Queued Listeners

This guide explains how Laravel's event system enables decoupled architecture by showing how to register events and listeners, generate code with Artisan, use wildcard listeners, define event and listener classes, control propagation, queue listeners, handle failures, dispatch events, and implement event subscribers.

EventsLaravelListeners
0 likes · 10 min read
Master Laravel Events: From Registration to Queued Listeners
Laravel Tech Community
Laravel Tech Community
Apr 17, 2020 · Backend Development

Master Real‑Time Laravel Event Broadcasting with WebSockets

This guide explains how to configure Laravel's broadcasting system, choose drivers like Pusher, Redis, or Socket.IO, implement event classes, set up channel authorization, and listen for real‑time updates in JavaScript using Laravel Echo for seamless WebSocket communication.

Event BroadcastingLaravelLaravel Echo
0 likes · 15 min read
Master Real‑Time Laravel Event Broadcasting with WebSockets
Laravel Tech Community
Laravel Tech Community
Apr 16, 2020 · Backend Development

Laravel Eloquent Relationship Types and Usage Guide

This guide explains Laravel Eloquent's relationship types—including one-to-one, one-to-many, many-to-many, polymorphic and has‑many‑through—showing how to define, query, preload, and manipulate them with PHP code examples and detailed explanations for backend development in applications.

BackendEloquentLaravel
0 likes · 26 min read
Laravel Eloquent Relationship Types and Usage Guide
Laravel Tech Community
Laravel Tech Community
Apr 16, 2020 · Backend Development

Laravel Eloquent ORM: Defining Models, Queries, and Data Operations

This tutorial explains how to configure Laravel's Eloquent ORM, create and customize model classes, manage table names, primary keys, timestamps, perform queries, insert, update, delete records, handle soft deletes, apply global and local scopes, and work with model events and observers, all with practical PHP code examples.

EloquentLaravelModel
0 likes · 22 min read
Laravel Eloquent ORM: Defining Models, Queries, and Data Operations
Laravel Tech Community
Laravel Tech Community
Apr 16, 2020 · Backend Development

Laravel Eloquent: Serializing Models and Collections to Arrays and JSON, Hiding Attributes, Appending Values, and Custom Date Formats

This guide explains how Laravel Eloquent can serialize models and their relationships to arrays or JSON, control visible and hidden attributes, append custom values, and customize date formatting using casts and Carbon serialization, with practical code examples for each feature.

BackendEloquentJSON
0 likes · 7 min read
Laravel Eloquent: Serializing Models and Collections to Arrays and JSON, Hiding Attributes, Appending Values, and Custom Date Formats
Laravel Tech Community
Laravel Tech Community
Apr 16, 2020 · Backend Development

Understanding Laravel Eloquent Collections and Their Methods

This article explains how Laravel Eloquent returns Collection objects, demonstrates iterating and chaining collection methods such as reject and map, lists the extensive base collection API, and shows how to create custom collections by overriding the newCollection method in a model.

Backend DevelopmentCollectionsEloquent
0 likes · 5 min read
Understanding Laravel Eloquent Collections and Their Methods
Laravel Tech Community
Laravel Tech Community
Apr 15, 2020 · Backend Development

Master Laravel Database Connections: Configuration, Read/Write Splitting, and Transactions

This guide explains how to configure Laravel's supported databases, set up SQLite, implement read/write connection splitting, use multiple connections, execute raw SQL queries, listen to query events, and manage transactions—including deadlock handling and manual control—complete with code examples.

ConfigurationLaravelRead/Write
0 likes · 8 min read
Master Laravel Database Connections: Configuration, Read/Write Splitting, and Transactions
Laravel Tech Community
Laravel Tech Community
Apr 15, 2020 · Backend Development

Laravel Pagination: Using Query Builder, Eloquent, Simple Pagination, and Custom Views

This guide explains how Laravel's paginator integrates with the query builder and Eloquent ORM, shows basic and simple pagination methods, demonstrates manual paginator creation, customizing URIs, appending parameters, converting results to JSON, and customizing pagination views, all with code examples compatible with Bootstrap.

Backend DevelopmentBootstrapEloquent
0 likes · 10 min read
Laravel Pagination: Using Query Builder, Eloquent, Simple Pagination, and Custom Views
Laravel Tech Community
Laravel Tech Community
Apr 15, 2020 · Backend Development

Using Laravel Seeders to Populate a Database with Test Data

This guide explains how to use Laravel seeders to generate test data, covering creation of seeder classes via Artisan, inserting records manually or with model factories, calling additional seeders, and the commands needed to run or refresh database seeding.

BackendLaravelPHP
0 likes · 4 min read
Using Laravel Seeders to Populate a Database with Test Data
Laravel Tech Community
Laravel Tech Community
Apr 14, 2020 · Backend Development

Master Laravel Authentication: From Scaffold to Custom Guard

This guide walks you through Laravel's built‑in authentication scaffolding, database requirements, route and view generation, customizing redirects, usernames, guards, validation, and storage, plus advanced techniques like manual authentication, HTTP basic auth, custom guards, and user providers, all with clear code examples.

AuthenticationBackendGuard
0 likes · 22 min read
Master Laravel Authentication: From Scaffold to Custom Guard
Laravel Tech Community
Laravel Tech Community
Apr 14, 2020 · Information Security

How to Secure Laravel APIs with Passport: A Complete OAuth2 Guide

This guide explains how to use Laravel Passport to implement OAuth2 authentication for API endpoints, covering installation, database migrations, token generation, client management, scope definition, route protection, JavaScript integration, event handling, and testing with detailed code examples.

API authenticationLaravelOAuth2
0 likes · 25 min read
How to Secure Laravel APIs with Passport: A Complete OAuth2 Guide
Laravel Tech Community
Laravel Tech Community
Apr 14, 2020 · Backend Development

Laravel Authorization: Using Gates and Policies

This guide explains Laravel's built‑in authorization features, covering how to define and register Gates and Policies, how to check permissions via the Gate facade, middleware, controller helpers, Blade directives, and includes practical code examples for common CRUD actions.

AuthorizationLaravelPHP
0 likes · 15 min read
Laravel Authorization: Using Gates and Policies
Laravel Tech Community
Laravel Tech Community
Apr 14, 2020 · Backend Development

Laravel Password Reset Implementation Guide

This guide explains how to enable Laravel's built‑in password reset feature by running the make:auth command, configuring the user model, migrating the reset token table, setting up routes and views, customizing guards, brokers, and notification emails, and adjusting token expiration.

AuthenticationBackendLaravel
0 likes · 6 min read
Laravel Password Reset Implementation Guide