@extends('layouts.app') @section('content')

{{$currency->name . '('.$currency->symbol.')'}}

@lang('global.app_view')
@can('currency_edit') @lang('global.app_edit') @endcan
@lang('global.currencies.fields.name') {{ $currency->name }}
@lang('global.currencies.fields.symbol') {{ $currency->symbol }}
@lang('global.currencies.fields.code') {{ $currency->code }}
@lang('global.currencies.fields.rate') {{ $currency->rate }}
@lang('global.currencies.fields.status') {{ $currency->status }}
@if ( 'active' === $tabs['invoices_active'] )
@include('admin.invoices.records-display')
@endif @if ( 'active' === $tabs['quotes_active'] )
@include('quotes::admin.quotes.records-display')
@endif @if ( 'active' === $tabs['recurring_invoices_active'] )
@include('recurringinvoices::admin.recurring_invoices.records-display')
@endif @if ( 'active' === $tabs['purchase_orders_active'] )
@include('admin.purchase_orders.records-display')
@endif @if ( 'active' === $tabs['credit_notes_active'] )
@include('admin.credit_notes.records-display')
@endif

 

@lang('global.app_back_to_list')
@stop @section('javascript') @if ( 'active' === $tabs['invoices_active'] ) @include('admin.invoices.records-display-scripts', ['type' => 'currency', 'type_id' => $currency->id ]) @endif @if ( 'active' === $tabs['quotes_active'] ) @include('quotes::admin.quotes.records-display-scripts', ['type' => 'currency', 'type_id' => $currency->id ]) @endif @if ( 'active' === $tabs['recurring_invoices_active'] ) @include('recurringinvoices::admin.recurring_invoices.records-display-scripts', ['type' => 'currency', 'type_id' => $currency->id ]) @endif @if ( 'active' === $tabs['purchase_orders_active'] ) @include('admin.purchase_orders.records-display-scripts', ['type' => 'currency', 'type_id' => $currency->id ]) @endif @if ( 'active' === $tabs['credit_notes_active'] ) @include('admin.credit_notes.records-display-scripts', ['type' => 'currency', 'type_id' => $currency->id ]) @endif @endsection