@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Invoice List') {{-- vendor style --}} @section('vendor-styles') @endsection {{-- page style --}} @section('page-styles') @endsection @section('content') Criar Opção de Pagamento ID Nome Ativo | Inativo Editar Excluir @foreach ($payments as $pay) {{ $pay->id }} {{ $pay->name }} @if ($pay->status == 1) {{ 'Ativo' }} @else {{ 'Inativo' }} @endif @csrf @method('DELETE') @endforeach @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection