PHP Classes

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

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg SAAS PHP CRM Open Source   resources/js/Pages/Teams/Create.vue   Download  
File: resources/js/Pages/Teams/Create.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: 541 bytes
 

Contents

Class file image Download
<script setup> import AppLayout from '@/Layouts/AppLayout.vue'; import CreateTeamForm from '@/Pages/Teams/Partials/CreateTeamForm.vue'; </script> <template> <AppLayout title="Create Team"> <template #header> <h2 class="font-semibold text-xl text-gray-800 leading-tight"> Create Team </h2> </template> <div> <div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8"> <CreateTeamForm /> </div> </div> </AppLayout> </template>