@extends('layouts.admin') @section('page-title') {{__('Manage Product & Service Unit')}} @endsection @section('breadcrumb') @endsection @section('action-btn')
@can('create constant unit') @endcan
@endsection @section('content')
@include('layouts.account_setup')
@foreach ($units as $unit) @endforeach
{{__('Unit')}} {{__('Action')}}
{{ $unit->name }} @can('edit constant category') @endcan @can('delete constant category')
{!! Form::open(['method' => 'DELETE', 'route' => ['product-unit.destroy', $unit->id],'id'=>'delete-form-'.$unit->id]) !!} {!! Form::close() !!}
@endcan
@endsection