AdminSetting.php 262 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace App\Admin\Renderable; use App\Admin\Forms\AdminSetting as AdminSettingForm; use Dcat\Admin\Support\LazyRenderable; class AdminSetting extends LazyRenderable { public function render() { return AdminSettingForm::make(); } }