FileManager

This commit is contained in:
Kevin Adametz 2020-03-07 19:45:39 +01:00
parent c8948338bb
commit f1e0900a7a
131 changed files with 5844 additions and 3081 deletions

31
app/Models/CMSAuthor.php Normal file
View file

@ -0,0 +1,31 @@
<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Reliese\Database\Eloquent\Model;
/**
* Class CMSAuthor
*
* @property int $id
* @property string $name
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @package App\Models
*/
class CMSAuthor extends Model
{
protected $connection = 'mysql_stern';
protected $table = 'c_m_s_authors';
protected $fillable = [
'name'
];
}