@extends ('../welcome') @section('content')

Edit Project

@csrf @method('PUT')
is_residential == 1 ? 'checked' : '' }}>
@foreach ($facilities as $facility)
id, $projectFacilities) ? 'checked' : '' }} type="checkbox">
@endforeach   
{{--

Payment Plans

--}}
{{-- Payment Plan Section --}} {{--

Payment Plans (Current)

@if (auth()->user()->type == 'admin' || auth()->user()->role->hasPermission('projects-paymentPlan'))
@foreach ($project->PaymentPlans()->where('is_active', 1)->get() as $plan)

{{ $plan->type == 'total_unit' ? 'Total Unit' : 'Maitenance' }} - {{ $plan->name }} :

@foreach ($plan->PaymentPlanDetails as $details) @endforeach @endforeach
{{-- @endif
--}} @endsection