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

{{ $contract->description}}

@endforeach
@endsection