<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class MstFacilityType extends Model
{
    //
    public static function getData($code='') 
    {
        if($code==''){
            $types = MstFacilityType::get();

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

    public static function getDataByCode($code='') 
    {
            $types = MstFacilityType::where('code', '=', $code)->first();
            return $types;     
    }
}
