İlk temizlik tamamlandı bir önceki projeden

This commit is contained in:
Ümit Tunç
2026-04-28 21:14:25 +03:00
commit f80443aec0
10000 changed files with 959965 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace App\View\Components\Forms;
use Illuminate\View\Component;
class Input extends Component
{
public $name;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($name)
{
$this->name = $name;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.forms.input');
}
}
+37
View File
@@ -0,0 +1,37 @@
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class InputEdit extends Component
{
public $type;
public $name;
public $value;
public $id;
public $table;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($type, $name, $value, $id, $table)
{
$this->type = $type;
$this->name = $name;
$this->value = $value;
$this->id = $id;
$this->table = $table;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.input-edit');
}
}
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class Test extends Component
{
/**
* Create a new component instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
return view('components.test');
}
}