• This project
    • Loading...
  • Sign in

Зуев Егор / wiki.dev

Logo belkanton
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wiki.dev
  • app
  • Setting.php
  • Dan Brown's avatar
    Added initial settings interface, Fixes #9. · 17f4aa43
    17f4aa43 Browse Files
    Dan Brown authored 2015-08-30 15:31:16 +0100
Setting.php 194 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
<?php

namespace Oxbow;

use Illuminate\Database\Eloquent\Model;

class Setting extends Model
{
    protected $fillable = ['setting_key', 'value'];

    protected $primaryKey = 'setting_key';
}