Tag

Laravel

1 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Apr 27, 2025 · Backend Development

Using NativePHP to Extend Laravel for Efficient Desktop Application Development

NativePHP is a third‑party library that enables developers to embed native PHP code within Laravel, allowing execution of CLI commands, file system manipulation, and database operations, thereby simplifying the creation of efficient, flexible desktop applications.

Desktop ApplicationFile SystemLaravel
0 likes · 5 min read
Using NativePHP to Extend Laravel for Efficient Desktop Application Development
php中文网 Courses
php中文网 Courses
Apr 17, 2025 · Backend Development

10 Common Mistakes to Avoid in Laravel Development

This article outlines ten frequent Laravel pitfalls—from neglecting mass‑assignment protection and overusing query builders to ignoring exception handling and security best practices—providing clear explanations and corrected code examples to help developers write more efficient, secure, and maintainable applications.

EloquentLaravelPHP
0 likes · 8 min read
10 Common Mistakes to Avoid in Laravel Development
php中文网 Courses
php中文网 Courses
Mar 27, 2025 · Backend Development

Simplifying Laravel API Requests with SaloonPHP Laravel Plugin

This article introduces the SaloonPHP Laravel Plugin, explains how to install it, demonstrates creating request classes and using them in services, and highlights features like caching and retries that streamline API request management in Laravel projects.

APIComposerLaravel
0 likes · 3 min read
Simplifying Laravel API Requests with SaloonPHP Laravel Plugin
Laravel Tech Community
Laravel Tech Community
Mar 18, 2025 · Backend Development

Getting Started with Filament: Installation, Configuration, and Demo for Laravel Backend Development

This guide introduces Filament, a full‑stack component library for Laravel, outlines its environment requirements, provides step‑by‑step installation and configuration commands, explains core components, and demonstrates a complete demo including models, migrations, relationships, forms, widgets, and charts.

DemoFilamentInstallation
0 likes · 7 min read
Getting Started with Filament: Installation, Configuration, and Demo for Laravel Backend Development
php中文网 Courses
php中文网 Courses
Mar 18, 2025 · Backend Development

Step-by-Step Guide to Building a Simple REST API with Laravel

This tutorial provides a step-by-step guide for beginners to set up the environment, create models, migrations, controllers, define routes, and test a simple RESTful API using Laravel, including optional advanced features and sample code.

LaravelPHPREST API
0 likes · 4 min read
Step-by-Step Guide to Building a Simple REST API with Laravel
php中文网 Courses
php中文网 Courses
Mar 17, 2025 · Backend Development

Comparative Overview of Major PHP Frameworks and Their Use Cases

This article reviews five popular PHP frameworks—Laravel, Symfony, CodeIgniter, Yii, and Phalcon—detailing their key features, strengths, and ideal project scenarios to help developers choose the most suitable framework for their specific needs.

CodeIgniterLaravelPHP
0 likes · 7 min read
Comparative Overview of Major PHP Frameworks and Their Use Cases
php中文网 Courses
php中文网 Courses
Mar 12, 2025 · Backend Development

Using Laravel’s New query() Method to Generate URLs with Query Parameters

Laravel’s newly introduced query() method simplifies generating URLs with query parameters by allowing chainable calls on URL instances, reducing code verbosity compared to traditional URL::to or route() approaches, and supporting parameter overrides and integration with route(), making URL construction more flexible and readable.

LaravelPHPQUERY method
0 likes · 5 min read
Using Laravel’s New query() Method to Generate URLs with Query Parameters
php中文网 Courses
php中文网 Courses
Mar 10, 2025 · Backend Development

New Major Features in Laravel 12

Laravel 12 introduces a suite of enhancements—including smarter route caching, an improved queue system, optimized database query handling, upgraded Eloquent ORM, tighter default security settings, better testing support, and new Artisan commands—aimed at boosting performance, security, and developer productivity.

LaravelPHPSecurity
0 likes · 6 min read
New Major Features in Laravel 12
php中文网 Courses
php中文网 Courses
Feb 21, 2025 · Backend Development

Best Practices for Laravel API Development in 2025

This guide presents comprehensive Laravel API development best practices for 2025, covering authentication with Sanctum and Passport, resource formatting, versioning, rate limiting, error handling, caching, and logging, offering code examples and practical advice to build secure, scalable, high‑performance APIs.

APIAuthenticationLaravel
0 likes · 6 min read
Best Practices for Laravel API Development in 2025
php中文网 Courses
php中文网 Courses
Feb 20, 2025 · Backend Development

Advanced Security Strategies and Tools for Laravel Applications

This article presents a comprehensive guide to securing Laravel applications, covering essential practices such as keeping the framework up to date, implementing CSP and HTTPS, preventing SQL injection and XSS, applying rate limiting, protecting environment files, and leveraging tools like Sanctum, Telescope, and security checkers.

LaravelPHPSecurity
0 likes · 14 min read
Advanced Security Strategies and Tools for Laravel Applications
php中文网 Courses
php中文网 Courses
Feb 14, 2025 · Backend Development

Efficient Data Structures and Algorithms in PHP for High-Performance Web Applications

This article explores powerful PHP data structures and algorithms—including binary search, hash tables, linked lists, stacks, queues, and binary trees—demonstrating their implementations, performance optimization strategies, and the modern Laravel Collections approach to efficiently handle large-scale data in web development.

AlgorithmsData StructuresLaravel
0 likes · 16 min read
Efficient Data Structures and Algorithms in PHP for High-Performance Web Applications
php中文网 Courses
php中文网 Courses
Feb 13, 2025 · Backend Development

Using NativePHP to Extend Laravel for Efficient Desktop Applications

This article explains how to leverage the NativePHP library within the Laravel framework to build high‑performance desktop applications by executing CLI commands, manipulating the file system, and performing database operations with native PHP code examples.

Desktop ApplicationFile SystemLaravel
0 likes · 4 min read
Using NativePHP to Extend Laravel for Efficient Desktop Applications
php中文网 Courses
php中文网 Courses
Feb 6, 2025 · Backend Development

Data Structures in PHP and Laravel: Best Practices and Optimization

This article examines core and advanced data structures in PHP and Laravel, demonstrating how arrays, associative and multidimensional arrays, collections, and JSON storage can be leveraged with practical code examples and query‑optimization techniques to build efficient, scalable, and maintainable web applications.

Data StructuresLaravelcollections
0 likes · 7 min read
Data Structures in PHP and Laravel: Best Practices and Optimization
php中文网 Courses
php中文网 Courses
Feb 5, 2025 · Frontend Development

Integrating Vue.js with Laravel Using Vite: A Step‑by‑Step Guide

This tutorial walks you through setting up a Laravel project, installing Laravel Breeze, configuring Vite for Vue.js, creating a TaskList component, registering it in the Blade template, and running the development server to see a responsive Vue‑driven task manager.

JavaScriptLaravelPHP
0 likes · 6 min read
Integrating Vue.js with Laravel Using Vite: A Step‑by‑Step Guide
php中文网 Courses
php中文网 Courses
Jan 27, 2025 · Backend Development

How to Move Files in Laravel Using File and Storage Facades

This tutorial explains how to move files in a Laravel application, showing syntax and complete code examples for both the File and Storage facades, compatible with Laravel versions 5 through 11, and includes guidance on ensuring target directories exist.

File SystemLaravelPHP
0 likes · 3 min read
How to Move Files in Laravel Using File and Storage Facades
php中文网 Courses
php中文网 Courses
Jan 9, 2025 · Backend Development

Integrating NativePHP into Laravel for Desktop Application Development

This article explains how to integrate NativePHP technology into a Laravel project to build desktop applications, covering the creation of a Laravel base, setting up entry files, defining routes and controllers, using PHP's OS functions, and providing complete code examples.

Desktop ApplicationLaravelNativePHP
0 likes · 5 min read
Integrating NativePHP into Laravel for Desktop Application Development
php中文网 Courses
php中文网 Courses
Dec 27, 2024 · Backend Development

Using Laravel's Collection::wrap to Convert Any Value into a Collection

The article explains Laravel's Collection::wrap method, showing basic usage for wrapping scalars, arrays, or existing collections, and provides real-world examples within a data‑processing service to streamline handling of items, tags, and search results.

CollectionDataProcessingLaravel
0 likes · 3 min read
Using Laravel's Collection::wrap to Convert Any Value into a Collection
php中文网 Courses
php中文网 Courses
Dec 24, 2024 · Backend Development

Implementing the Repository Pattern in Laravel: A Step‑by‑Step Guide

This guide explains the repository pattern for Laravel, detailing its benefits, step‑by‑step implementation for an e‑commerce product management module—including model, interface, repository, controller code—and offers best practices, caching tips, and common pitfalls to improve code structure, maintainability, and testability.

LaravelPHPRepository Pattern
0 likes · 9 min read
Implementing the Repository Pattern in Laravel: A Step‑by‑Step Guide
Laravel Tech Community
Laravel Tech Community
Dec 13, 2024 · Backend Development

Using Laravel 11 Rate Limiting: Custom, Global, Segmented, and Redis‑Based Limits

This article explains how Laravel 11's built‑in rate‑limiting service can be configured with custom, global, segmented, and Redis‑backed limits, showing code examples for defining limiters, custom responses, multiple constraints, and applying them to routes via middleware.

LaravelPHPRate Limiting
0 likes · 6 min read
Using Laravel 11 Rate Limiting: Custom, Global, Segmented, and Redis‑Based Limits