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

{{ __('MOTIVOS DE LOS MOVIMIENTOS') }}

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