mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
Update Laravel to 7.0
This commit is contained in:
22
app/Rank.php
22
app/Rank.php
@@ -4,6 +4,28 @@ namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* App\Rank
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $desc
|
||||
* @property string $acces_level
|
||||
* @property string $permissions
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank whereAccesLevel($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank whereDesc($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank whereName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank wherePermissions($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Rank whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Rank extends Model
|
||||
{
|
||||
public function permissions()
|
||||
|
||||
Reference in New Issue
Block a user