@extends('layouts.admin') @push('js') @endpush @section('content')
| Nome | Salário Base | Ação |
|---|---|---|
| {{ $nivel->nome }} | @if ($nivel->salario_base) {{ number_format($nivel->salario_base, 2, ',', '.') }} @endif | @button([ 'route' => 'admin.niveis-salariais.edit', 'routeParams' => ['nivel' => $nivel], 'class' => 'btn-primary', 'label' => 'Visualizar/Editar', 'icon' => 'edit' ]) @endbutton @button([ 'class' => 'btn-danger btn-excluir-nivel', 'icon' => 'x', 'label' => 'Excluir', 'route' => 'admin.niveis-salariais.destroy', 'routeParams' => ['nivel' => $nivel], ]) @endbutton |