@extends('layouts.back') @section('titulo', 'Formas de Pagamento') @section('page_header','Painel') @push('header_imports') @endpush @section('content')

Formas de Pagamento

@can('create', \App\FormaPagamento::class) @endcan @foreach ($formas_pagamento as $item) @endforeach
# Descrição Parcelas Intervalo Dias Ações
{{$item->id}} {{$item->descricao}} {{$item->parcelas}} {{$item->intervalo_dias}}
@can('update', $item) @endcan @can('delete', $item)
{!! csrf_field() !!}
@endcan
@endsection @component('components.outros.configuracao-data-href-index', ['tabela' => 'formas pagamento']) @endcomponent