-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace CSlant\Blog\Core\Models\Base; | ||
|
||
use Botble\ACL\Models\Role as BotbleRole; | ||
|
||
class BaseRole extends BotbleRole | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
namespace CSlant\Blog\Core\Models\Base; | ||
|
||
use Botble\Blog\Models\Tag as BotbleTag; | ||
|
||
class BaseTag extends BotbleTag | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace CSlant\Blog\Core\Models; | ||
|
||
use CSlant\Blog\Core\Models\Base\BaseRole; | ||
|
||
/** | ||
* Class Role | ||
* @package CSlant\Blog\Core\Models | ||
* | ||
* @property int $id | ||
* @property string $name | ||
* @property string $slug | ||
* @property string $description | ||
* @property object $permissions | ||
* @property string $status | ||
* @property int $is_default | ||
* @property int $created_by | ||
* @property int $updated_by | ||
* @property string $created_at | ||
* @property string $updated_at | ||
*/ | ||
class Role extends BaseRole | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
namespace CSlant\Blog\Core\Models; | ||
|
||
use CSlant\Blog\Core\Models\Base\BaseTag; | ||
|
||
/** | ||
* Class Tag | ||
* @package CSlant\Blog\Core\Models | ||
* | ||
* @property int $id | ||
* @property string $name | ||
* @property string $description | ||
* @property string $status | ||
* @property int $author_id | ||
* @property string $author_type | ||
* @property string $created_at | ||
* @property string $updated_at | ||
* @property string $slug | ||
* @mixin BaseTag | ||
*/ | ||
class Tag extends BaseTag | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters