@extends('admin.layout') @push('css') @endpush @section('content')

{{ __('POSICIONES REGISTRADAS') }}

@if (count($posiciones) > 0) @foreach ($posiciones as $posicion) @endforeach @else @endif
{{ __('ID') }} {{ __('NOMBRE') }}
{{ $posicion->id }} {{ $posicion->nombre }}
{{ __('No hay datos disponibles') }}
{{ $posiciones->links('pagination::bootstrap-4') }}
Mostrando del {{ $posiciones->firstItem() }} al {{ $posiciones->lastItem() }} de {{ $posiciones->total() }} registros
@include('posiciones.modal.create') @stop @section('js') @stop