@extends('layout') @section('title', 'Non Disclosure Agreement') @section('content')

Non Disclosure Agreements

@if(!$ndas->isEmpty())

@if (in_array(Auth::user()->role, array('manager', 'admin'))) Create @endif

@foreach($ndas as $nda) @endforeach
Name Application Date Actions
{{ $nda->first_name }} {{ $nda->last_name }} {{ date('Y-m-d', strtotime($nda->created_at)) }}
@csrf @method('DELETE') @if (in_array(Auth::user()->role, array('intern', 'admin'))) @endif
Name Application Date Actions
@else Create @endif
@endsection @section('js') @endsection()