Best of PHPJuly 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Laravel Volt

    Laravel Volt is a new project announced at Laracon 2023. Volt brings single-file components to Blade templates. This will allow developers to create powerful interactive components that leverage the back-end and the front-end. Conclustion Volt is scheduled to be released this week and I will update this post as soon as this.

  2. 2
    Article
    Avatar of communityCommunity Picks·3y

    Laravel Folio

    Laravel Folio is a Page-based routing system introduced to Laravel at LaraconUS 2023. Using Folio you can easily map a route to a specific file or folder, like NextJS or NuxtJS. We can also create dynamic pages using wildcards.

  3. 3
    Article
    Avatar of lnLaravel News·3y

    PHPSandbox - Build, Prototype, and share PHP apps in seconds

    PHPSandbox is a web app that allows you to quickly prototype or share PHP projects without setting up a local environment. The base plan is free, and they have an upgraded professional plan for $6 a month, including private repos, email captures, and more.

  4. 4
    Article
    Avatar of developertechDeveloper Tech·3y

    JetBrains launches code quality platform Qodana

    Qodana is the only code quality platform on the market that leverages inspections native to JetBrains IDEs. The platform has now transitioned from its preview phase and is now commercially available. It offers developers the opportunity to automate code reviews, build quality gates, and enforce code quality guidelines across their projects.

  5. 5
    Article
    Avatar of lnLaravel News·3y

    Design Emails and Send Them Via API with MailCarrier

    MailCarrier is an open-source web app built with Laravel and Filament. You can design emails once and send them via an API call. Send emails synchronously or async via queues.

  6. 6
    Article
    Avatar of communityCommunity Picks·3y

    Hono + htmx + Cloudflare is a new stack

    Hono JSX Middleware Hono- a JavaScript framework for edges - includes JSX middleware. Hono's Zod Validator Middleware integrates with Hono, allowing us to easily get the types of validated values. It’s already fast and perfectly suitable for Proof of Concept (PoC) projects.

  7. 7
    Article
    Avatar of lnLaravel News·3y

    Laravel 10.16 Released

    Laravel 10.16 released v10.16 with support for in the Collection method, improvements to the output for sub-minute tasks, allow binding of IPv6 addresses in artisan serve, and more: Improve the display of sub- minute tasks in the command.

  8. 8
    Article
    Avatar of lnLaravel News·3y

    Learn Livewire 3, Volt, and Folio by building a podcast player

    Learn Livewire 3, Volt, and Folio by building a podcast player. Laravel team released a powerful page-based router designed to simplify routing in Laravel applications. In this article, I will teach you how to build a simple app that lists out episodes of the Laravel News podcast and allows users to play them.

  9. 9
    Article
    Avatar of laravelLaravel·3y

    Introducing Volt: An elegantly crafted functional API for Livewire

    Volt is an elegantly crafted functional API for Livewire. The functional API is compiled to Livewire class components and linked with the template present in the same file. Volt allows you to easily convert a small portion of a page into a Volt component without extracting it into a separate file.

  10. 10
    Article
    Avatar of lnLaravel News·3y

    The Livewire v3 Beta Has Been Released

    The Livewire v3 Beta has been released. Livewire now allows Alpine to do the heavy lifting while still providing the syntactic sugar you've come to love. The new core architecture will also be much easier to maintain for Caleb Porzio and the Livewire core contributors.

  11. 11
    Article
    Avatar of btrprogBetter Programming·3y

    How To Eliminate Boilerplate Code With PHP 8.1

    How To Eliminate Boilerplate Code with PHP 8.1 can massively reduce the amount of boilerplate code in your application. This is just 15 lines of code compared to the 63 lines for our class in PHP 7.4! Can we do any better?

  12. 12
    Article
    Avatar of communityCommunity Picks·3y

    Running NativePHP on Windows: An Unofficial Developer’s Hack

    NativePHP is an innovative approach to building native applications, leveraging the familiar tools of PHP. It revolutionizes the development process by letting you create powerful, native applications using the PHP language and environment you’re already comfortable with. The method lets you bypass the wait and start developing withNativePHP on your Windows machine right away.

  13. 13
    Article
    Avatar of lnLaravel News·3y

    Watch Caleb Porzio's "Livewire 3" Presentation from Laracon

    Caleb Porzio's Livewire 3 presentation from Laracon US is now live on Youtube. See Caleb explain and demonstrate new Livewire features, such as hot reloading without a build step, automatic injection, and more. Learn about the new and much more Laracon 2023 talks will continue to be published throughout this week.

  14. 14
    Article
    Avatar of lnLaravel News·3y

    Laravel Folio

    Laravel Folio is a new automatic file and directory-based routing system. This gives you a "pages" directory; when one of those pages is hit from the URL, it automatically loads.

  15. 15
    Article
    Avatar of lnLaravel News·3y

    Laracon Recap

    The 2023 Laracon US is now wrapped up, and it was a fantastic week of new product releases, training, inspiration, and meeting new and old friends. Nuno on stage announcing Pest's "Spicy Summer" release is full of new features, and I'm most excited about Snapshot Testing, which allows you to assert that the output of a function or method.

  16. 16
    Article
    Avatar of lnLaravel News·3y

    PHP JSON Parser - Read large JSON from any source in a memory-efficient way

    PHP JSON Parser is a zero-dependencies pull Parser to read large JSON from any source in a memory-efficient way. It has a progress API to track the parsing progress (i.e., completion percentage, bytes processed, etc). Check out this package, get full installation instructions, and view the source code on GitHub.

  17. 17
    Article
    Avatar of lnLaravel News·3y

    PhpStorm for Laravel Developers

    PhpStorm for Laravel Developers course is now 100% complete and free to watch. You can learn how to automate refactoring, leverage AI, use the Laravel Idea plugin, debug with Xdebug, and more! This series contains eighteen episodes totaling 2 hours and 35 minutes of Php Storm + Laravel content.

  18. 18
    Article
    Avatar of laravelLaravel·3y

    Introducing Folio: Page Based Routing

    Folio is a powerful page-based router designed to simplify routing in Laravel applications. Folio and Volt, which allows you to write single-file Livewire components within your Folio pages, launches tomorrow. The Laravel Folio repository and documentation are available on GitHub: GitHub.com/laravel/folio.