@extends('adminlte::page') @section('title', 'Categorias') @section('content_header')

Categorias

@stop @section('content')
[+] Novo [<>] Atualizar
@if ($message = Session::get('success'))

{{ $message }}

@endif

Categorias Cadastradas

@foreach ($categorias as $key => $value) @endforeach
# Nome Ativo Action
{{ $value->id }} {{ $value->nome }} {{ ($value->ativo == 'S') ? "SIM" : "NÃO"; }}
@csrf @method('DELETE') @php if($value->ativo == 'S') { $ic_active = ''; $active_acao = 'N'; } else { $ic_active = ''; $active_acao = 'S'; } @endphp {!! $ic_active !!}
@endsection