Add settings page

This commit is contained in:
2020-08-30 23:06:01 +01:00
parent 535a2c3973
commit ca82f5882d
10 changed files with 318 additions and 4 deletions

13
app/Options.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Options extends Model
{
public $fillable = [
'option_name',
'option_value'
];
}