Get in touch: support@brackets-hub.com



Tag: Advanced

  • Advanced Laravel: Middleware and Service Providers

    Advanced Laravel: Middleware and Service Providers

    Middleware and service providers are two powerful features of Laravel that allow you to extend and customize your application. Middleware provides a convenient mechanism for filtering HTTP requests entering your application, while service providers are the central place to configure your application’s services. This advanced guide will take you through creating custom middleware to handle […]

    Read more...

  • Secrets of Regular Expressions: Advanced Pattern Matching

    Secrets of Regular Expressions: Advanced Pattern Matching

    Regular expressions (regex) are a powerful tool for pattern matching and manipulation of text. Here, we’ll explore some advanced techniques and concepts to master regular expressions: **1. Lookaheads and Lookbehinds: Lookaheads ((?=pattern)) and lookbehinds ((?<=pattern)) allow you to assert that a certain pattern appears ahead or behind the current position without actually consuming characters. 2. […]

    Read more...