mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
23 lines
354 B
PHP
23 lines
354 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Config extends Model
|
|
{
|
|
protected $casts = [
|
|
'data' => 'array',
|
|
];
|
|
|
|
public function data()
|
|
{
|
|
return $this->data[0];
|
|
}
|
|
|
|
public static function getData($configName)
|
|
{
|
|
return Config::where('name',$configName)->first()->data();
|
|
}
|
|
}
|