@extends('layouts.admin') @section('page-title') {{__('Manage Contract Type')}} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('action-btn')
@endsection @section('content')
@include('layouts.crm_setup')
@if(\Auth::user()->type=='company') @endif @foreach ($types as $type) @if(\Auth::user()->type=='company') @endif @endforeach
{{__('Name')}}{{__('Action')}}
{{ $type->name }}
{!! Form::open(['method' => 'DELETE', 'route' => ['contractType.destroy', $type->id]]) !!} {!! Form::close() !!}
@endsection