芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/panorama.panoramawholesale.com/app/Models/Country.php
* * @contributor Sabbir Al-Razi <[sabbir.techvill@gmail.com]> * * @created 20-05-2021 */ namespace App\Models; class Country extends Model { /** * timestamps * * @var bool */ public $timestamps = false; /** * Get Country * * @param int $id * @return string */ public static function getCountry($id = null) { $country = self::getAll()->where('id', $id)->first(); return $country->name; } }