Best of LaravelAugust 2023

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Build a Google Drive Clone with Laravel, PHP, and Vue.js

    A 14-hour course on the freeCodeCamp.org YouTube channel will teach you how to build and deploy a feature-rich file manager application using Laravel, Inertia, and Vue.js. The course was created by the experienced developer Zura Sekhniashvili, also known as The Codeholic.

  2. 2
    Article
    Avatar of devtoDEV·3y

    VSCode for PHP and Laravel

    VSCode for PHP and Laravel development is a solid base configuration that can be expanded upon using additional workspace specific configurations. Intelephense is the most important extension to install for PHP support. Phpactor is a PHP Language Server with more features than you can shake a stick atphpactor.

  3. 3
    Article
    Avatar of lnLaravel News·3y

    Filament v3 just launched

    Filament v3 just launched and includes many new features, a completely refreshed UI, a new website, Livewire 3 support, and more. Some of the new features include: Action modals everywhere. Open modals and slide-overs from any button on the page.

  4. 4
    Article
    Avatar of lnLaravel News·3y

    AI-powered Tools for Developers - From Code to Completion

    AI-powered Tools for Developers - From Code to Completion - Laravel News DocuWriter.ai provides you with a bunch of tools to generate Code documentation, Tests, and Code Refactors from your source code files. Just upload your code, and we'll do the rest. Save time, efforts and get your Code Documentation always updated.

  5. 5
    Article
    Avatar of lnLaravel News·3y

    NativePHP Tutorial: Building a Mac MenuBar application

    NativePHP allows us Laravel Devs to leverage all the working knowledge we already have with Laravel to build native Mac, Windows, and Linux applications. This is kinda like sorcery if you think about it - web technologies to build out a 'native' application.

  6. 6
    Article
    Avatar of lnLaravel News·3y

    Livewire v3 Has Been Released

    Livewire v3 has been released. Caleb Porzio demoed a ton of the new features in his talk at Laracon. The core of Livewire has been totally rewritten from scratch. The new core architecture will also be much easier to maintain for Caleb and the Livewire core contributors.

  7. 7
    Article
    Avatar of readmeThe ReadMe Project·3y

    Is Laravel the happiest developer community on the planet?

    PHP is the language used by 77.5% of all websites with back-end languages that w3tech has been able to identify. In StackOverflow's 2023 developer survey, Go was "admired" by 62.45% of respondents, while only 41.83% admired PHP.

  8. 8
    Article
    Avatar of itnextITNEXT·3y

    Yes, here are 4 stacks to build MVPs faster in 2023

    The key to getting shit done is to build an MVP (minimum viable product) or an MLP (minimum lovable product) The faster you launch, the faster you can test your idea with users. Here are 4 stacks to build MVPs faster in 2023.

  9. 9
    Article
    Avatar of lnLaravel News·3y

    Boost your Eloquent Models with Laravel Lift

    Laravel News Lift lets you create public properties in Eloquent Models that match your table schema. This makes your models easier to read and work with in any IDE. It provides a simple way to set up your models, focusing on simplicity and ease of use by using PHP 8’s attributes.

  10. 10
    Article
    Avatar of laravelbytesLaravel Bytes·3y

    A NativePHP Example

    Fly.io can run Laravel apps globally. It's a great place to host an API - perhaps for your Native apps! Deploy your Laravel API on Fly.io, you’ll be up and running in minutes!

  11. 11
    Article
    Avatar of awstipAWS Tip·3y

    Factory Pattern: Better Laravel Monoliths

    Factory Pattern promotes loose coupling code by separating implementation from its client. The pattern is useful when we have more than one implementation of an interface and selection of implementing class is dictated by context such as calling component or request parameters. We have to use Factory Pattern and Dependency Injection.

  12. 12
    Article
    Avatar of lnLaravel News·3y

    Generate API Documentation for Laravel with Scramble

    Scramble generates API documentation without requiring you to write PHPDoc annotations manually. The UI uses Spotlight Elements to provide interactive API Docs with embeddable React or Web Components. The main motto of [Scramble] is to generate as much API documentation as possible.

  13. 13
    Article
    Avatar of lnLaravel News·3y

    Bolt is a Laravel Form Builder for the TALL Stack

    Bolt is a Laravel Form Builder for the TALL Stack. Laravel News Bolt includes a front and backend UI. The administration panel also allows you to enable/disable a form, change the form presentation mode, and require a login to complete the form.

  14. 14
    Article
    Avatar of lnLaravel News·3y

    Exploring the Laravel Sushi package

    Laravel Sushi allows you to create Eloquent models from data sources other than a database. The simplest way to use it is by providing your data as a hardcoded array right inside the Model file. Other times, you may use the to provide dynamic data from an API source, a CSV file, or anywhere else you choose.

  15. 15
    Article
    Avatar of lnLaravel News·3y

    MJML to HTML using PHP

    MJML is a markup language designed to reduce the pain of writing responsive email templates. MJML doesn't have a PHP implementation to convert to HTML. You can even use the mjml-sidecar package to compile MJML to HTML using Sidecar. All conversions to HTML will be done in AWS Lambda.

  16. 16
    Article
    Avatar of awstipAWS Tip·3y

    Laravel Authentication and Authorization: JWT and Policies

    Laravel Authentication and Authorization: JWT and Policies are PHP classes that implements access control and hence authorization by defining authorization logic for a given model or resource. Every content that may be served by an API may be considered as a resource. This includes images as well as data stored in the database.