@extends('layouts.app', [ 'class' => '', 'elementActive' => 'listarUsuarios', ]) @section('content')
{{-- table-responsive --}} @php $cont = 0; @endphp @foreach ($data as $item) @php $cont++; @endphp @if ($item->estado == 1) @else @endif @endforeach
ID NOMBRE FECHA ESTADO ACCIONES
{{ $cont }} {{ $item->nombre }} {{ $item->fecha }}ActivoInactivo @if ($item->idbusqueda == 1) @if ($item->estado == 0) @endif @else @if ($item->estado == 0) @endif {{ Form::open(['url' => 'eliminarBusqueda' . '/' . $item->idbusqueda, 'class' => 'pull-right', 'id' => 'frmDel' . $item->idbusqueda]) }} {{ Form::hidden('_method', 'DELETE') }} {{ Form::close() }} @endif
image @endsection @push('scripts') @endpush