@extends('layouts.app') @section('title', __('payment.detail')) @section('content') @include('payments.partials.breadcrumb')
@lang('payment.detail') {{ __('app.type') }} : {{ $payment->type() }} @include('payments.partials.payment-show')
@lang('app.action')

{!! link_to_route('payments.pdf', __('payment.print'), [$payment->id], ['class' => 'btn btn-success']) !!}

{!! link_to_route('payments.edit', __('payment.edit'), [$payment->id], ['class' => 'btn btn-warning']) !!}

{!! link_to_route('projects.payments', __('project.view_payments'), [$payment->project_id], ['class' => 'btn btn-default']) !!}

{!! link_to_route('payments.index', __('payment.back_to_index'), [], ['class' => 'btn btn-default']) !!}

@endsection