@extends('layouts/contentNavbarLayout')
@section('title', 'Contract Company')
@section('content')
| Start Date |
End Date |
Note |
Actions |
@forelse ($contracts as $company)
| {{ $company->start_date }} |
{{ $company->end_date }} |
{{ $company->note }} |
|
@empty
|
No company found !
|
@endforelse
@endsection