Mohamad Mahmoodhashnotes.hashnode.dev·May 1, 2024Laravel Basic DB CRUD Web and API project - Todos Project[0] Create a new project [1] Create Migration Use Laravel's migration feature to create the table. Run the following command in your terminal: php artisan make:migration create_todos_table --create=todos The above command will generate a new migrati...laravel DB
Mohamad Mahmoodhashnotes.hashnode.dev·Feb 16, 2024Laravel - Create API Site Using LaragonLaravel v10.44.0 (PHP v8.2.11) [1] Create new Laravel project Right-click anywhere on the main window of Laragon Control Panel. Type the name of the project. e.g. rearnet Wait for Laragon to create the project. Messages will be communicated through...Laravel-API
Muhammad Asifasifdev-1697527454446.hashnode.dev·Oct 17, 2023Best Practices for Building RESTful APIs in LaravelTable of Contents Introduction Versioning Your API Using Resource Controllers Following RESTful URI Conventions Using HTTP Verbs Appropriately Implementing Pagination Validating Input Data Using Middleware for Authentication and Authorization...Laravel