current location:Home > Technical Articles > PHP Framework > Laravel

  • Laravel development: How to read and write Excel files using Laravel Excel and PHPOffice?
    Laravel development: How to read and write Excel files using Laravel Excel and PHPOffice?
    With the widespread use of Excel files in the business and financial fields, integrating Excel files into web applications has become one of the skills required by developers. Since Laravel is a popular PHP framework, there are many packages in its ecosystem that can help us read and write Excel files. This article will introduce how to use LaravelExcel and PHPOffice library to read and write Excel files in Laravel applications. What is LaravelExcel? L
    Laravel 3051 2023-06-13 17:57:58
  • Laravel development: How to use Laravel Dusk for browser end-to-end testing?
    Laravel development: How to use Laravel Dusk for browser end-to-end testing?
    Laravel is a popular PHP development framework that provides a rich set of features and tools to simplify web application development. One of these features is LaravelDusk. LaravelDusk allows developers to write end-to-end browser tests to ensure application stability and reliability. In this article, we will take a deep dive into how to use LaravelDusk for browser end-to-end testing. 1. Install LaravelDusk and use Larave
    Laravel 1240 2023-06-13 17:46:42
  • Laravel development: How to set up a development environment using Laravel Valet?
    Laravel development: How to set up a development environment using Laravel Valet?
    As a PHP developer, in order to effectively develop applications and websites, a good development environment is essential. LaravelValet is a very popular and easy-to-use tool that can help you set up your Laravel development environment easily. In this article, we will explain how to set up a development environment using LaravelValet. What is LaravelValet? LaravelValet is a Mac-based development environment designed specifically for L
    Laravel 1240 2023-06-13 17:46:35
  • Laravel Development: How to compile front-end resources using Laravel Mix?
    Laravel Development: How to compile front-end resources using Laravel Mix?
    In today's web development, front-end resource compilation has become a necessary step. As a well-known PHP framework, Laravel also provides the tool LaravelMix in order to facilitate developers to compile and manage front-end resources. This article will introduce how to use LaravelMix to compile front-end resources from the following three aspects. 1. Install LaravelMix To use LaravelMix, you first need to install its related dependencies in the project. Can be installed via npm
    Laravel 1209 2023-06-13 17:46:28
  • Laravel development: How to use Laravel Artisan for command line interface development?
    Laravel development: How to use Laravel Artisan for command line interface development?
    Laravel is a very popular PHP framework. It adopts modern architecture and design patterns and has great advantages in developing web applications. Among them, LaravelArtisan is a very important command line tool in Laravel, which can help us quickly create and maintain applications. In this article, we will introduce how to use Laravel Artisan for command line interface development. We'll start with how to use Artisan to generate code skeletons, and then talk about
    Laravel 1574 2023-06-13 17:45:52
  • Laravel development: How to use Laravel Redis to implement data caching?
    Laravel development: How to use Laravel Redis to implement data caching?
    Laravel is a very popular PHP framework that is widely used in web development. The Laravel framework provides many convenient APIs and components, including data caching. Redis is a popular open source in-memory data structure storage that can very effectively improve data query and reading efficiency. This article will introduce how to use LaravelRedis to implement data caching in Laravel to improve the performance of web applications. Installation First, we need to install LaravelRedis
    Laravel 1732 2023-06-13 17:45:39
  • Laravel development: How to implement API authentication using Laravel Passport?
    Laravel development: How to implement API authentication using Laravel Passport?
    Laravel is an open source PHP web application framework designed to help developers easily build efficient web applications. LaravelPassport is part of the Laravel framework. It is an authentication server that implements the OAuth2 protocol and provides powerful support for API development. In this article, we will cover how to implement API authentication using LaravelPassport. Install LaravelPassport using La
    Laravel 1757 2023-06-13 17:34:38
  • Laravel development: How to use Laravel Dusk for automated UI testing?
    Laravel development: How to use Laravel Dusk for automated UI testing?
    With the development of web applications, test automation has become an indispensable element. In this article, we will explore LaravelDusk, a powerful tool of the Laravel framework for automated UI testing. LaravelDusk provides a simple API to run a headless browser to verify that your web application is working as expected by simulating user interaction. What are the benefits of using LaravelDusk for automated UI testing? quick
    Laravel 886 2023-06-13 17:21:27
  • Laravel development: How to use Laravel Logging to log?
    Laravel development: How to use Laravel Logging to log?
    Laravel is a popular PHP framework that has many built-in functions to facilitate our development, among which logging is one of them. By recording logs, we can quickly locate problems in the program and improve the stability and maintainability of the program. In this article, we will explore how to use LaravelLogging for logging. Introduction to LaravelLogging LaravelLogging is a logging method built into the Laravel framework. which is specified by
    Laravel 2637 2023-06-13 17:21:19
  • Laravel development: How to use Laravel Telescope for performance analysis and monitoring?
    Laravel development: How to use Laravel Telescope for performance analysis and monitoring?
    Laravel development: How to use LaravelTelescope for performance analysis and monitoring? Laravel is an excellent PHP framework that is loved by developers because of its simplicity, ease of use and flexibility. To better monitor and analyze the performance of Laravel applications, the Laravel team has developed a powerful tool called Telescope. In this article, we will introduce some basic usage and features of Telescope. Install Telescope in
    Laravel 1482 2023-06-13 17:14:38
  • Laravel development: How to manage OAuth2 with Laravel Passport?
    Laravel development: How to manage OAuth2 with Laravel Passport?
    In web application development, it is often necessary to use the OAuth2 protocol for user authentication and authorization so that users can use third-party services securely. By using LaravelPassport, you can easily handle the OAuth2 protocol to implement authentication and authorization in Laravel applications. LaravelPassport is an open source software package that provides a complete OAuth2 server implementation, including Token generation, Token management,
    Laravel 1472 2023-06-13 17:14:31
  • Laravel development: How to implement WebSockets communication using Laravel Echo and Pusher?
    Laravel development: How to implement WebSockets communication using Laravel Echo and Pusher?
    Laravel is a popular PHP framework that is highly scalable and efficient. It provides many powerful tools and libraries that allow developers to quickly build high-quality web applications. Among them, LaravelEcho and Pusher are two very important tools through which WebSockets communication can be easily implemented. This article will detail how to use these two tools in Laravel applications. What are WebSockets? WebSockets
    Laravel 1265 2023-06-13 17:01:38
  • Laravel development: How to optimize file size using Laravel Mix and Webpack?
    Laravel development: How to optimize file size using Laravel Mix and Webpack?
    Laravel development: How to optimize file size using LaravelMix and Webpack? Laravel is a very popular PHP framework that provides many features and tools to help developers become more productive when building web applications. Among them, LaravelMix and Webpack are two powerful tools that can help you optimize file size and improve performance. In this article, we will introduce how to use LaravelMix and Webpack to optimize
    Laravel 1482 2023-06-13 16:44:40
  • Laravel development: How to implement polymorphic associations using Laravel Eloquent?
    Laravel development: How to implement polymorphic associations using Laravel Eloquent?
    Laravel development: How to use LaravelEloquent to implement polymorphic associations? Polymorphic association is an important feature of Laravel Eloquent, which allows one model to establish relationships with multiple different models. In practical applications, processing different types of data is relatively simple and efficient, especially in database design. In this article, we will discuss how to implement polymorphic associations using Laravel Eloquent. 1. What is a polymorphic association? Polymorphism
    Laravel 1883 2023-06-13 16:41:52
  • Laravel development: How to optimize front-end resources using Laravel Mix and Webpack?
    Laravel development: How to optimize front-end resources using Laravel Mix and Webpack?
    Laravel is a popular PHP web application framework. It has many features such as simplicity, ease of use, efficiency, flexibility, and strong scalability. It is favored by many web developers. Among them, LaravelMix and Webpack are one of the most popular front-end building tools in the Laravel framework. This article will introduce how to use LaravelMix and Webpack to optimize front-end resources. 1. What are LaravelMix and Webpack? LaravelMix
    Laravel 1639 2023-06-13 16:41:44

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28