PHP Classes

File: resources/js/Layouts/GuestLayout.vue

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Vue.js PHP CRUD Example Using Laravel Vite   resources/js/Layouts/GuestLayout.vue   Download  
File: resources/js/Layouts/GuestLayout.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Vue.js PHP CRUD Example Using Laravel Vite
Example application to manage users and blog posts
Author: By
Last change:
Date: 5 months ago
Size: 594 bytes
 

Contents

Class file image Download
<script setup> import ApplicationLogo from '@/Components/ApplicationLogo.vue'; import { Link } from '@inertiajs/inertia-vue3'; </script> <template> <div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100"> <div> <Link href="/"> <ApplicationLogo class="w-20 h-20 fill-current text-gray-500" /> </Link> </div> <div class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white shadow-md overflow-hidden sm:rounded-lg" > <slot /> </div> </div> </template>