お知らせ画面の追加
This commit is contained in:
20
app/Information.php
Normal file
20
app/Information.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
|
||||
class Information extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
const CATEGORIES = [
|
||||
0 => ['label' => 'お知らせ', 'class' => 'badge-info'],
|
||||
1 => ['label' => 'アップデート', 'class' => 'badge-success'],
|
||||
2 => ['label' => '不具合情報', 'class' => 'badge-danger'],
|
||||
3 => ['label' => 'メンテナンス', 'class' => 'badge-warning']
|
||||
];
|
||||
|
||||
protected $dates = ['deleted_at'];
|
||||
}
|
Reference in New Issue
Block a user