<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class MstLawrestriction extends Model
{
    protected $connection = 'mysql';

    public static function getData($code='')
    {
        if($code==''){
            $types = MstLawrestriction::get();

            $arrResult = array();
            foreach($types as $type){
                 $arrResult[] = ['code' => $type->code, 'name' => $type->name];
            }
            return $arrResult;
        } else {
            $types = MstLawrestriction::where('code', '=', $code)->get();

            $arrResult = array();
            foreach($types as $type){
                 $arrResult[] = ['code' => $type->code, 'name' => $type->name];
            }
            return $arrResult;
        }
    }
}
