Skip to content

Instantly share code, notes, and snippets.

View marcelobbfonseca's full-sized avatar
🎯
Focusing

Marcelo marcelobbfonseca

🎯
Focusing
View GitHub Profile
@marcelobbfonseca
marcelobbfonseca / App.vue
Created April 25, 2020 23:46
Example resources/js/App.vue and resources/js/App.vue file for a laravel+vue project. The main.js file in a VueCLI project is our app.js. I kept the app.js name from a default laravel project.
<template>
<v-app>
<left-menu/>
<header-component/>
<v-content>
<router-view/>
</v-content>
<footer-component/>
</v-app>
</template>
@marcelobbfonseca
marcelobbfonseca / App.vue
Last active June 11, 2020 15:40
Example resources/views/welcome.blade.php resources/js/App.vue and resources/js/App.vue file for a laravel+vue SPA project. The main.js file in a VueCLI project is our app.js. I kept the app.js name from a default laravel project.
<template>
<v-app>
<left-menu/>
<header-component/>
<v-content>
<router-view/>
</v-content>
<footer-component/>
</v-app>
</template>
@marcelobbfonseca
marcelobbfonseca / .env
Created September 18, 2020 12:26
RSA keys in .env file example
PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\ndasdasdadasdasdasdasdasdasdasdadasdasdadasa\nhuehuauhhuauhahuauhauahuauhehuehuauheuhahue\n-----END RSA PRIVATE KEY-----\n"
PUBLIC_KEY="-----BEGIN RSA PUBLIC KEY-----\nminemineminemineminemineminemineminemineminemine\nhuehuauhhuauhahuauhauahuauhehuehuauheuhahue\n-----END RSA PUBLIC KEY-----\n"