@php $editRoute = 'noticeboard.edit'; $deleteRoute = 'noticeboard.destroy'; $isInstructor = isInstructor(); $isOrganization = isOrganization(); if ($isInstructor) { $editRoute = 'instructor.noticeboard.edit'; $deleteRoute = 'instructor.noticeboard.destroy'; } if ($isOrganization) { $editRoute = 'organization.noticeboard.edit'; $deleteRoute = 'organization.noticeboard.destroy'; } @endphp