@extends('layouts.app') @section('content')
@include('project.project-menu')

Add your team

@csrf
To add a teammate who’s not on Techsaga, you need to Create Them First
@if( auth()->user()->role_id == 1 || auth()->user()->role_id == 2 || auth()->user()->role_id == 3 || auth()->user()->role_id == 4 ) @endif
@if(count($project_member) > 0 ) @foreach($project_member as $item)

{{$item->first_name.' '.$item->last_name}}

{{Techsaga::getDesigName($item->designation_id)}}
@endforeach @else

Member not assigged yet!

@endif

Add your client

@csrf
To add a Client who’s not on Techsaga, you need to Invite Them First
@if( auth()->user()->role_id == 1 || auth()->user()->role_id == 2 || auth()->user()->role_id == 3 || auth()->user()->role_id == 4 ) @endif
@if(count($project_client) > 0 ) @foreach($project_client as $item) @endforeach @else

Client not assigged yet!

@endif
@endsection