IMMREX7

aku nok ndi : /home/spdtg/www/gomygps/app/
File Up :
aku nok ndi : /home/spdtg/www/gomygps/app/helpers.php

<?php

/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

function checkActive($path, $active = 'active') {
    if (is_string($path)) {
        return request()->is($path) ? $active : '';
    }
    foreach ($path as $str) {
        if (checkActive($str) == $active)
            return $active;
    }
}

function getCompanies(){
    $compnies = [''=>'---Select---'] + \App\Company::get()->pluck('companyName','idCompany')->toArray();
    return $compnies;
}

Copyright © 2021 - 2025 IMMREX7