PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Thiago Przyczynski   PHP CPF Validation   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Read me
Class: PHP CPF Validation
Validate Brazilian tax payer numbers with Laravel
Author: By
Last change:
Date: 4 years ago
Size: 628 bytes
 

Contents

Class file image Download

CPF Validator

A Laravel package to work with CPF validation.

CPF is an individual taxpayer identification number given to people living in Brazil, both native Brazilians and resident foreigners.

Installation

` composer install thiagoprz/cpf-validator`

Usage

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class CpfController extends Controller
{
    ...
    /
     * Store action
     */
    public function store(Request $request)
    {
        $this->validate($request, [
            'cpf' => 'cpf', // CPF validation
            ...
        ]);
        ...
    }
    ...
}