20 lines
366 B
PHP
20 lines
366 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Inputs;
|
|
|
|
use App\View\Components\Input;
|
|
use Illuminate\View\Component;
|
|
|
|
class Image extends Input
|
|
{
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*
|
|
* @return \Illuminate\Contracts\View\View|string
|
|
*/
|
|
public function render()
|
|
{
|
|
return view('components.inputs.image');
|
|
}
|
|
}
|