PHP Classes

File: resources/js/Pages/Teams/Show.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg SAAS PHP CRM Open Source   resources/js/Pages/Teams/Show.vue   Download  
File: resources/js/Pages/Teams/Show.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg SAAS PHP CRM Open Source
Application to manage the contacts of customers
Author: By
Last change:
Date: 1 year ago
Size: 1,358 bytes
 

Contents

Class file image Download
<script setup> import AppLayout from '@/Layouts/AppLayout.vue'; import DeleteTeamForm from '@/Pages/Teams/Partials/DeleteTeamForm.vue'; import SectionBorder from '@/Components/SectionBorder.vue'; import TeamMemberManager from '@/Pages/Teams/Partials/TeamMemberManager.vue'; import UpdateTeamNameForm from '@/Pages/Teams/Partials/UpdateTeamNameForm.vue'; defineProps({ team: Object, availableRoles: Array, permissions: Object, }); </script> <template> <AppLayout title="Team Settings"> <template #header> <h2 class="font-semibold text-xl text-gray-800 leading-tight"> Team Settings </h2> </template> <div> <div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8"> <UpdateTeamNameForm :team="team" :permissions="permissions" /> <TeamMemberManager class="mt-10 sm:mt-0" :team="team" :available-roles="availableRoles" :user-permissions="permissions" /> <template v-if="permissions.canDeleteTeam && ! team.personal_team"> <SectionBorder /> <DeleteTeamForm class="mt-10 sm:mt-0" :team="team" /> </template> </div> </div> </AppLayout> </template>