Skip to content

Instantly share code, notes, and snippets.

View Aly-ve's full-sized avatar

Alyve Aly-ve

View GitHub Profile
@Aly-ve
Aly-ve / AppServiceProvider.php
Last active January 28, 2022 13:07
Use Laravel's Factories with custom main namespace on Laravel 8
<?php
/**
*** On Laravel 8, factories becomes classes.
*** If your are using a custom namespace for your app, you need to add Factory::guessFactoryNamesUsing.
*** There is an example, enjoy 🎊
**/
namespace CustomNamespace\Providers;
@Aly-ve
Aly-ve / anything.vue
Last active April 30, 2018 08:59
Buttons to share a website to Diaspora* or Mastodon
<template>
<div class="page">
<shareDiaspora></shareDiaspora>
<shareMastodon v-bind:name="foo"></shareMastodon>
</div>
</template>
<script>
import ShareMastodon from '@/components/share-mastodon'
import ShareDiaspora from '@/components/share-diaspora'