HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/netwerkbrabant.komma.pro/app/KommaApp/Kms/Core/HasImagesInterface.php
<?php

namespace App\KommaApp\Kms\Core;

use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\HasMany;


/**
 * Class Page
 * @package App\KommaApp\Pages\Models
 *
 * @property int id
 * @property int active
 * @property string code_name
 * @property int lft
 * @property int rgt
 * @property int tree
 */
interface HasImagesInterface
{

    /**
     * Get the images from the current user
     *
     * @return \Illuminate\Database\Eloquent\Relations\hasMany
     */
    public function images(): HasMany;
}