İmport page design

This commit is contained in:
Merve Karaman
2023-07-25 18:09:06 +03:00
parent dc6d942e32
commit 2fb2006c22
12 changed files with 628 additions and 61 deletions

View File

@ -0,0 +1,30 @@
<?php
namespace App\View\Components\Form\Input;
use App\Abstracts\View\Components\Form;
class Import extends Form
{
public $type = 'file';
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
if (! empty($this->options)) {
$options = [];
foreach ($this->options as $option) {
$options[$option->id] = $option->name;
}
$this->options = $options;
}
return view('components.form.input.import');
}
}