@extends('layouts.app-general') @section('content')

ITEMS DE LA CALCULADORA

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE ITEMS {{ $items->total() }}
@foreach($items as $item) @endforeach
NOMBRE NUMERO DE BUSQUEDAS CONVERTIDO EN ARTICULO CREACIÓN
{{ $item->item_name }} {{ $item->number_of_times_searched }} @if($item->added==1) Si @else No @endif {{ $item->created_at }}
@if(count($items)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $items])
@endsection