@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100'])
@section('content')
@include('layouts.navbars.auth.topnav', ['title' => 'listarOrden'])
|
Código |
Nombre |
Estado |
|
@foreach ($osOrdenes as $osOrdene)
{{ $osOrdene->oso_codigo }}
|
{{ $osOrdene->oso_nombre }}
|
@if ($osOrdene->oso_estado == 1)
Activo
@else
Desactivado
@endif
|
|
@endforeach
{{-- modal --}}
@include('layouts.footers.auth.footer')
@endsection