<?php
namespace App\Komma\Solutions\Kms;
use App\Komma\Kms\Core\SectionController;
use App\Komma\Solutions\Models\Solution;
class SolutionController extends SectionController
{
protected $slug = 'solutions';
protected $forModelName = Solution::class;
public function __construct(SolutionSection $section)
{
parent::__construct($section);
}
}