@include('partials.superadmin.header') @include('partials.superadmin.menu')
@forelse($companytype as $prequest) @empty @endforelse
{{ __('Name') }} {{ __('Date') }} {{ __('Action') }}
{{ $prequest->name }}
{{ Utility::getDateFormated($prequest->created_at, true) }}
{!! Form::open([ 'method' => 'DELETE', 'route' => ['company_type.destroy', $prequest->id], 'id' => 'delete-form-' . $prequest->id, ]) !!} {!! Form::close() !!}
{{ __('No Manually company type Found.') }}
    {!! $companytype->links() !!}
@include('partials.superadmin.footer')