| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class Settings extends Model
- {
- use HasFactory;
-
- /**
- * The database table used by the model.
- *
- * @var string
- */
- protected $table = 'settings';
- /**
- * The database primary key value.
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * Attributes that should be mass-assignable.
- *
- * @var array
- */
- protected $fillable = [
- 'key',
- 'value',
- ];
- }
|