@extends('layouts.admin') @push('script-page') @endpush @section('page-title') {{__('Contract Type')}} @endsection @section('title')
{{__('Contract Type')}}
@endsection @section('breadcrumb') @endsection @section('action-btn') @if(\Auth::user()->type=='company')
@endif @endsection @section('filter') @endsection @section('content')
@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],'id'=>'delete-form-'.$type->id]) !!} {!! Form::close() !!}
@endsection