お知らせ画面の追加

This commit is contained in:
shibafu
2017-11-03 20:38:09 +09:00
parent edcc2bceaf
commit d94c444b55
10 changed files with 158 additions and 7 deletions

20
app/Information.php Normal file
View 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'];
}