diff --git a/app/View/Components/Form/Section.php b/app/View/Components/Form/Section.php new file mode 100644 index 000000000..a496f37e3 --- /dev/null +++ b/app/View/Components/Form/Section.php @@ -0,0 +1,38 @@ +spacingVertical = $spacingVertical; + $this->spacingHorizontal = $spacingHorizontal; + $columnNumber = $columnNumber; + } + + /** + * Get the view / contents that represent the component. + * + * @return \Illuminate\Contracts\View\View|string + */ + public function render() + { + return view('components.form.section.index'); + } +} diff --git a/public/css/app.css b/public/css/app.css index 1c8b2db0e..6d0fe34f9 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -48389,6 +48389,10 @@ body{ width: 25%; } + .lg\:w-2\/12{ + width: 16.666667%; + } + .lg\:w-80{ width: 20rem; } @@ -48409,10 +48413,6 @@ body{ width: 60%; } - .lg\:w-2\/12{ - width: 16.666667%; - } - .lg\:w-7\/12{ width: 58.333333%; } diff --git a/resources/views/components/form/section/index.blade.php b/resources/views/components/form/section/index.blade.php index 439d3e57c..a258d3365 100644 --- a/resources/views/components/form/section/index.blade.php +++ b/resources/views/components/form/section/index.blade.php @@ -4,9 +4,16 @@ @endif @if (! empty($body) && $body->isNotEmpty()) -