wiki pages first try

This commit is contained in:
2018-10-27 01:57:46 -05:00
parent 3a43361c3c
commit ca38c00ec6
12 changed files with 256 additions and 7 deletions

14
app/Models/DokuUser.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class DokuUser extends Model
{
// Table Name
protected $table = 'wiki_user';
// Timestamps
public $timestamps = 'false';
}