@extends('layouts.admin') @push('script-page') @endpush @section('page-title') {{__('Contract')}} @endsection @section('title')
{{__('Contract')}}
@endsection @section('breadcrumb') @endsection @section('action-btn') @if(\Auth::user()->type=='company') @endif @endsection @section('filter') @endsection @section('content')
@forelse ($contracts as $contract)
{{ $contract->subject}}
@if(\Auth::user()->type=='company')
@endif

{{ $contract->description}}

@empty

{{ __('No Contract Found..') }}

@endforelse
@endsection