mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:01:24 +00:00
fd0b938c4f
[ci skip] [skip ci]
26 lines
437 B
PHP
26 lines
437 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class Admin extends Model
|
|
{
|
|
use Notifiable;
|
|
|
|
protected $admin;
|
|
protected $email;
|
|
|
|
/**
|
|
* Admin constructor.
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->admin = env('ADMIN_USER');
|
|
$this->email = Settings::settingValue('site.main.email');
|
|
}
|
|
}
|