Getting Started With Laravel Jetstream
Learn how to scaffold your Laravel apps quickly with Laravel Jetstream, a beautifully designed Laravel app starter kit.
Learn how to scaffold your Laravel apps quickly with Laravel Jetstream, a beautifully designed Laravel app starter kit.
Миграции и пополнения — это мощные утилиты для базы данных, предоставляемые PHP-фреймворком Laravel, которые позволяют разработчикам быстро инициализировать, уничтожать и воссоздавать базу…
In Eloquent, you can delete database records conveniently with the delete method from the parent Model class. In the last part of this series, you’ll create a new command to delete lists. For simplicity, any links associated with the list to be deleted will be reassigned to the default link list.
This tutorial covers building a web application using the Laravel framework with Nginx as the web server and MySQL as the database all inside Docker containers along with configuration files for PHP, MySQL, and Nginx.
How to authenticate a Laravel API and protect resources so that only the right users are authorized to have the right access.
So far, we’ve seen how to set up the MySQL database tables using migrations, how to create an Eloquent model to interact with the links table, and how to create Artisan commands to manage links in the database. We’ll now see how to create a custom Blade template to show your links in the application’s front-end, using the Bulma CSS framework.
El autor seleccionó la organización Diversity in Tech Fund para que reciba una donación como parte del programa Write for DOnations. Laravel es actualmente uno de los…
O autor selecionou a Diversity in Tech Fund para receber uma doação como parte do programa Write for DOnations. O Laravel é um dos frameworks de aplicação PHP de…
Looking for a simpler way to build fullstack web apps? See how Laravel—a popular PHP framework with expressive, elegant syntax—can be the foundation of your app, freeing you to create without sweating the small things.
In the second part of our Practical Introduction to Laravel Eloquent Series, you’ll learn how to insert records in the database using Eloquent models. One of the biggest advantages of using an ORM system is the ability to manipulate rows in a database table as objects within your codebase. With Eloquent, as with other ORMs, the object itself provides methods that can be used to persist it to the database, saving you the work of writing SQL statements.