23 lines
411 B
PHP
Executable File
23 lines
411 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Livewire;
|
|
|
|
use App\Models\Categoria;
|
|
use Livewire\Component;
|
|
|
|
class ShowIndexCategoria extends Component
|
|
{
|
|
public $verPro=false;
|
|
public $categorian;
|
|
public $imagen;
|
|
|
|
|
|
public function render()
|
|
{
|
|
$consulta_categoria = Categoria::get();
|
|
return view('livewire.show-index-categoria',[
|
|
'categorias' => $consulta_categoria
|
|
]);
|
|
}
|
|
}
|