50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Setting
|
|
{
|
|
static $History_Setting=[
|
|
[
|
|
"no" => "1",
|
|
"month" => "January",
|
|
"year" =>"2021",
|
|
"persentase" =>"50%",
|
|
"status" =>"Active"
|
|
],
|
|
[
|
|
"no" => "2",
|
|
"month" => "February",
|
|
"year" =>"2022",
|
|
"persentase" =>"40%",
|
|
"status" =>"Non Active"
|
|
],
|
|
[
|
|
"no" => "3",
|
|
"month" => "March",
|
|
"year" =>"2023",
|
|
"persentase" =>"30%",
|
|
"status" =>"Non Active"
|
|
],
|
|
[
|
|
"no" => "4",
|
|
"month" => "April",
|
|
"year" =>"2021",
|
|
"persentase" =>"60%",
|
|
"status" =>"Non Active"
|
|
],
|
|
[
|
|
"no" => "5",
|
|
"month" => "May",
|
|
"year" =>"2023",
|
|
"persentase" =>"20%",
|
|
"status" =>"Non Active"
|
|
]
|
|
];
|
|
public static function HistorySetting(){
|
|
return self::$History_Setting;
|
|
}
|
|
} |