@extends('layouts.app')
@section('title', trans('contracts.title'))
@section('content')
@php $auth = request()->user(); @endphp
@can('create', App\Models\Contract::class)
{{trans('forms.lbl_add_new')}}
@endcan
{{trans('forms.lbl_employee')}} |
{{trans('forms.lbl_start_date')}} |
{{trans('forms.lbl_end_date')}} |
{{trans('forms.lbl_description')}} |
{{trans('forms.lbl_status')}} |
{{trans('forms.lbl_contract_agreement')}} |
@if($auth->hasAnyPermission(['access settings']))
{{trans('title.action')}} |
@endif
@endsection
@section('footer-script')
@endsection