@extends('layouts.app')
@section('content')
- Inicio
- Lotes
- Opciones de Categoría
| # |
ID |
Nombre |
Descripción |
Categoria |
Orden |
Estado |
|
| |
{!! Form::text('id_options',$id_options,['id'=>'id_options','class'=>'form-control','placeholder'=>'','onchange '=>"buscar('id_options')"]) !!}
|
{!! Form::text('name',$name,['id'=>'name','class'=>'form-control','placeholder'=>'','onchange '=>"buscar('name')"]) !!}
|
{!! Form::text('description',$description,['id'=>'description','class'=>'form-control','placeholder'=>'','onchange '=>"buscar('description')"]) !!}
|
{!! Form::text('category',$category,['id'=>'category','class'=>'form-control','placeholder'=>'','onchange '=>"buscar('category')"]) !!}
|
{!! Form::text('order',$order,['id'=>'order','class'=>'form-control','placeholder'=>'','onchange '=>"buscar('order')"]) !!}
|
{!! Form::select('estado',['1' =>'Activo','0'=>'Inactivo'],$estado,['id'=>'estado','class'=>'form-control','placeholder'=>'Seleccionar','onchange '=>"buscar('estado')"]) !!}
|
{!! Form::close() !!}
@if(count($data)>0)
@foreach($data as $item)
| {{ $contador++ }} |
{{ $item->id }} |
{{ $item->name }} |
@if ($item->description != null)
{{ $item->description }}
@else
No definido
@endif
|
{{ $item->category }}
|
{{ $item->order }}
|
@if ($item->status == 1)
Activo
@else
Inactivo
@endif
|
|
@endforeach
@else
| No se encontraron resultados. |
@endif
@endsection
@section('script')
@endsection