@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
@foreach ($payments as $pay) @endforeach
ID Nome Ativo | Inativo Editar Excluir
{{ $pay->id }} {{ $pay->name }} @if ($pay->status == 1) {{ 'Ativo' }} @else {{ 'Inativo' }} @endif
@csrf @method('DELETE')
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection