Posts containing the tag #php
Laravel 5.8 Form Request Validation
There are plenty of validation methods available to validate the form data request with Laravel 5.8. By default Laravel’s base controller class uses a Validates Requests trait which provides a way to
- 5 years ago
- 7.3K Views
How to build an API with Laravel 5.8 using Sqlite
This tutorial focuses on setting up REST API in Laravel 5.8 using PHPUnit and SQLITE. If you’re new to Laravel or PHPUnit, Check out the Laravel Getting Started Guide and PHPUnit Documentation for mor
- 5 years ago
- 7.5K Views
Laravel Cheat Sheet for Eloquent ORM
ORM (Object-relational mapping) is used to make database CRUD operations easier. Laravel comes with Eloquent ORM. This tutorial is created to provide some of the frequently used cheat sheet for Larave
- 5 years ago
- 10.8K Views
Simple PHP Page Router
This is a simple yet basic PHP routing application created to direct all request to index.php and route the files to it’s relevant paths.
- 5 years ago
- 8.8K Views
Scheduling Tasks with Cron Job in Laravel 5.8
Cron Job is used to schedule tasks that will be executed every so often. Crontab is a file that contains a list of scripts, By editing the Crontab, You can run the scripts periodically.
- 5 years ago
- 7.5K Views
Convert PHP Array To JSON : Examples
This tutorial focuses on converting PHP Array to JSON. It is used to read data from the server and display it to the Web. JSON is a text format , and We can convert any JS Object into a JSON format.
- 5 years ago
- 7.5K Views