Project Name:
{{ $web_project_channel->web_project->title }}
Designation:
{{ Str::title(str_replace('_', ' ', $web_project_channel->type)) }}
Google Drive Link:
@if ($web_project_channel->type == 'web_designer')
Google Drive Link:
{{ $web_project_channel->type == 'web_designer' ? "Site Map: " . ($web_project_channel->where('sub_status', 'like', '%Site Map%')->first()->draft ?? 'N/A') : '' }}
{{ $web_project_channel->type == 'web_designer' ? "Draft Homepage Approval: " . ($web_project_channel->where('sub_status', 'like', '%Draft Homepage Approval%')->first()->draft ?? 'On Progress') : '' }}
{{ $web_project_channel->type == 'web_designer' ? "Draft Homepage Approval: " . ($web_project_channel->where('sub_status', 'like', '%Final Homepage Approval%')->first()->draft ?? 'On Progress') : '' }}
{{ $web_project_channel->type == 'web_designer' ? "Draft Homepage Approval: " . ($web_project_channel->where('sub_status', 'like', '%All Pages Approval%')->first()->draft ?? 'On Progress') : '' }}
@endif
Date:
{{ $web_project_channel->date_target }}
Client Name:
{{ $web_project_channel->web_project->client->name }}
Blade @php $user = Auth::user(); $rolePosition = $user->roles->position ?? null; $isDisabled = true; // Default to disabled if ($rolePosition) { switch ($rolePosition) { case 'operations_supervisor': $isDisabled = $web_project_channel->status != 'Submitted to Operations Supervisor'; break; case 'top_management': $isDisabled = $web_project_channel->status != 'Submitted to Top Management'; break; case 'client': $isDisabled = $web_project_channel->status != 'Submitted to Client'; break; case 'assistant_supervisor': $isDisabled = $web_project_channel->status != 'Submitted to Assistant Supervisor'; break; default: // Check for privilege and page in the default case $approvalPage = \App\Models\Page::where('description', 'like', '%approvals%')->first(); $approvalPrivilege = \App\Models\Privilege::where('description', 'like', '%can_approve%')->first(); if ($approvalPage && $approvalPrivilege) { $hasPrivilege = $user->role_channels() ->where('page_id', $approvalPage->id) ->where('privilege_id', $approvalPrivilege->id) ->exists(); // Check if the record exists if ($hasPrivilege) { $isDisabled = false; // Enable if user has privilege and page } } else { $isDisabled = true; // Disable if approval page or privilege not found } } } @endphp

Choose Signature Method:

@csrf {{-- File Upload --}}
Selected Image
{{-- Signature Pad --}} {{-- Saved Signature Section --}}
@if (Auth::user()->signature) Your Saved Signature @endif
@if ($errors->has('signature_admin') || $errors->has('signature_pad'))

{{ $errors->first('signature_admin') ?: $errors->first('signature_pad') }}

@endif {{-- Agreement Checkbox --}}
@if ($errors->any()) @foreach ($errors->all() as $error)

{{ $error }}

@endforeach @endif {{-- Approve and Decline Buttons --}}
{{-- Include the signature modal (hidden by default) --}}