@extends('layouts.dashboard')
@section('title', 'Link de Pag.')
@section('title-dashboard')
Link de Pag.
@endsection
@section('option-dashboard')
{!! Form::open(['route' => 'link_pagamentoFiltrar', 'class' => 'horizontal-form', 'files' => true]) !!}
{!! Form::label('filtro', 'Filtro', ['class' => 'control-label']) !!}
{!! Form::close() !!}
@endsection
@section('option-dashboard')
{!! Form::open(['route' => 'link_pagamentoFiltrar', 'class' => 'horizontal-form', 'files' => true]) !!}
{!! Form::label('filtro', 'Filtro', ['class' => 'control-label']) !!}
{!! Form::close() !!}
@endsection
@section('pg-home')
@endsection
@section('content')
@parent
@include('link_pagamento/create')
@if($displayEdit == 'displayblock')
@include('link_pagamento/edit')
@endif
| Código |
Usuário |
Link |
Descrição |
Situação |
Parc. |
Aut. |
Valor |
{{-- */$x=0;/* --}}
@foreach($link_pagamento as $item)
{{-- */$x++;/* --}}
| {{ $item->id }} |
{{ str_limit($item->usuario->name,10) }} |
{{ $item->link }} |
{{ str_limit($item->descricao,25) }} |
{{ $item->situacao }} |
{{ $item->reference_key }} |
@if($item->situacao == 'Pago'){{ $item->aut }}@endif |
{{ number_format($item->valor,2,',','.') }} |
@endforeach
@endsection