@extends('adminlte::page') @section('title', 'Parametros') @section('template_title') Parametros @endsection @section('content')
{{ __('Parametros') }}
@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($parametros as $parametro) @endforeach
No Clave Valor Create At
{{ ++$i }} {{ $parametro->clave }} {{ $parametro->valor }} {{ $parametro->create_at }}
{{ __('Show') }} {{ __('Edit') }} @csrf @method('DELETE')
{!! $parametros->withQueryString()->links() !!}
@endsection