@extends('layouts/contentNavbarLayout') @section('title', 'Customer Agreement - Customer Agreements List') @section('page-style') @endsection @section('content')

Dashboard / Customer Agreement

Customer Agreement List
@foreach ($customerAgreements as $customerAgreement) @endforeach
# User Name Agreement checked Status Actions
{{ $loop->iteration }}
{{ $customerAgreement->user->name }}
{{ $customerAgreement->user->name }}
{{-- {{ $customerAgreement->file_name }} --}} @if ($customerAgreement->check_agreement == 1) Yes @endif @if ($customerAgreement->is_approved == 0) Pending @elseif ($customerAgreement->is_approved == 1) Approved @elseif ($customerAgreement->is_approved == 2) Reject @endif
@endsection @section('page-script') @endsection