@extends('layouts.app') @section('title') {{__('Project Contracts Near Due')}} @endsection @section('breadcrumb')

{{__('Project Contracts Near Due')}}

@endsection @section('content')

{{__('Equipment')}}

@foreach($contracts as $c) @endforeach
{{ __('Title') }} {{ __('Discount Type') }} {{ __('Start Date') }} {{ __('End Date') }} {{ __('Created At') }}
{{ $c->title }} {{ ($c->discount_type == 1) ? 'Percentage' : 'Custom price' }} {{ date_format(date_create($c->start_date), 'M j, Y') }} {{ date_format(date_create($c->end_date), 'M j, Y') }} {{ date_format(date_create($c->created_at), 'M j, Y') }}
@endsection @section('scripts') @endsection