@extends('layouts.admin')
@section('page-title')
{{__('Manage Chart of Account Type')}}
@endsection
@section('action-button')
@can('create constant chart of account type')
@endcan
@endsection
@section('content')
{{__('Name')}} |
{{__('Action')}} |
@foreach ($types as $type)
{{ $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
|
@endforeach
@endsection