16 lines
458 B
PHP
16 lines
458 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container my-5">
|
|
<h1 class="mb-4">Select Form</h1>
|
|
@livewire('select-form', [
|
|
'name' => 'category',
|
|
'label' => 'Select Category',
|
|
'required' => true,
|
|
'optionsList' => [
|
|
['value' => '1', 'label' => 'Category 1'],
|
|
['value' => '2', 'label' => 'Category 2']
|
|
]
|
|
])
|
|
</div>
|
|
@endsection |