PHP code example of capitalab / dpa

1. Go to this page and download the library: Download capitalab/dpa library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

capitalab / dpa example snippets


use Capitalab\DPA\Region;
use Capitalab\DPA\Provincia;
use Capitalab\DPA\Comuna;

public function index()
{
    $regiones = Region::all();
 
    // Regiones con provincias y comunas   
    $regiones = Region::with('provincias.comunas')->get();
    
    // Regiones con sus comunas   
    $regiones = Region::with('comunas')->get();
    
    $rm = Region::where('nombre', '=', 'Región Metropolitana de Santiago')->first();
    
    // O si vives en los 90'
    $rm = Region::where('ordinal', '=', 'RM')->first();
    
    // Comunas de una región
    $comunasRM = $rm->comunas;
    
    $provinciaStgo = Provincia::where('nombre', '=', 'Santiago')->with('comunas')->first();
    $comunasStgo = $provinciaStgo->comunas;

    $providencia = Comuna::where('nombre', '=', 'Providencia')->first();
    $providencia->region; // Región Metropolitana de Santiago
}

php artisan vendor:publish --tag="dpa.migrations"

php artisan migrate

php artisan dpa:seed