<?php
namespace App\Components\ComponentArea;
use Illuminate\Database\Eloquent\Relations\MorphMany;
/**
* Interface HasDynamicGroupSectionsInterface
*
* @mixin \Illuminate\Database\Eloquent\Model
*/
interface HasComponentAreasInterface
{
public function componentAreas():MorphMany;
}