@extends('layouts.admin') @section('page-title') {{__('Manage Chart of Account Type')}} @endsection @section('action-button')
@can('create constant chart of account type')
{{__('Create')}}
@endcan
@endsection @section('content')
@foreach ($types as $type) @endforeach
{{__('Name')}} {{__('Action')}}
{{ $type->name }} @can('edit constant chart of account type') @endcan @can('delete constant chart of account type') {!! Form::open(['method' => 'DELETE', 'route' => ['chart-of-account-type.destroy', $type->id],'id'=>'delete-form-'.$type->id]) !!} {!! Form::close() !!} @endcan
@endsection