@extends('layout.padrao') @section('title', 'List - Payment Terms') @section('pesquisa')
@endsection @section('content') @include('include.filtro_result') @if($errors->any())
@foreach($errors->all() as $error) {{ $error }}
@endforeach
@endif
@can('create', App\Usuario::class) @include('include.btn_adicionar',["btn" => "paymentterms"]) @endcan
@foreach($paymentTerms as $item) @endforeach
Operation Register ID Payment Term Terms Status
@can('update', App\Usuario::class) @endcan @can('delete', App\Usuario::class) id}} data-toggle="modal" data-target="#delete" data-toggle="tooltip" data-placement="top" title="Delete" > @endcan {{ $item->id }} {{ $item->description }} {{ $item->terms }} @if ((!empty($item->status))&&$item->status == "Ativo") @else @endif
@include('bibliotecas.floattheadOverflow')
{{ $paymentTerms->links() }}
@include('include.modal_adicionar_crud', [ "route" => "paymentterm", "title" => "Payment Terms", "fields" => [ ["name" => "description", "label" => "Description"], ["name" => "terms", "label" => "Terms"] ] ]) @include('include.modal_editar_crud' , [ "route" => "paymentterm", "title" => "Payment Terms", "fields" => [ ["name" => "description", "label" => "Description"], ["name" => "terms", "label" => "Terms"] ] ]) @include('include.modal_deletar_crud', ["route" => "paymentterm"]) @endsection