@extends('adminlte::page') @section('title', 'AdminLTE') @section('content_header')
Catalogoconstancias
Add New

@foreach($catalogoconstancias as $item)
...
Nombre: {{$item->nombre}}

Precio: ${{$item->precio}}

Dias para entrega: {{$item->dia_entrega}}

DescripciĆ³n: {{$item->description}}

{{ method_field('DELETE') }} {{ csrf_field() }}
@endforeach
{!! $catalogoconstancias->appends(['search' => Request::get('search')])->render() !!}
@endsection