PHPackages                             geonetsolutions/socialwall - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. geonetsolutions/socialwall

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

geonetsolutions/socialwall
==========================

Create a pretty social feed integrating your favourite social media accounts.

v1.0.1(8y ago)9207MITPHP

Since Feb 22Pushed 8y ago2 watchersCompare

[ Source](https://github.com/GeonetSolutions/laravel-socialwall)[ Packagist](https://packagist.org/packages/geonetsolutions/socialwall)[ Docs](http://github.com/geonetsolutions/socialwall)[ RSS](/packages/geonetsolutions-socialwall/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

[![Geonet Solutions](/brand/banner.jpg)](/brand/banner.jpg)

[![Total Downloads](https://camo.githubusercontent.com/355836cbf2d962edfc12ef64ad88801f16342e28fa07658c27ca5dd7fa56a20a/68747470733a2f2f706f7365722e707567782e6f72672f67656f6e6574736f6c7574696f6e732f736f6369616c77616c6c2f646f776e6c6f616473)](https://packagist.org/packages/geonetsolutions/socialwall)[![Latest Stable Version](https://camo.githubusercontent.com/2fd81fba29e0cc3f255d9009884e247c0402475d8928371893088a31423c30b4/68747470733a2f2f706f7365722e707567782e6f72672f67656f6e6574736f6c7574696f6e732f736f6369616c77616c6c2f762f737461626c65)](https://packagist.org/packages/geonetsolutions/socialwall)[![License](https://camo.githubusercontent.com/e36cac8b1899a0fa1e04a1e8e4b3053c978c72a341fcf209b5d9b1afea2f05b3/68747470733a2f2f706f7365722e707567782e6f72672f67656f6e6574736f6c7574696f6e732f736f6369616c77616c6c2f6c6963656e7365)](https://packagist.org/packages/geonetsolutions/socialwall)

---

### Introduction

[](#introduction)

A simple package that integrates with different social platforms to provide a easy to use Social Wall for your next project.

---

#### Current Social Integrations

[](#current-social-integrations)

- Facebook
- Instagram
- Twitter

---

### Installation Laravel 5.5 +

[](#installation-laravel-55-)

1. Composer require the package:

    `composer require geonetsolutions/socialwall`
2. Let Laravel 5.5/5.6 Automatic Package Discovery do its thang!

---

### Installation Laravel 5.4

[](#installation-laravel-54)

1. Composer require the package:

    `composer require geonetsolutions/socialwall`
2. Register the service provider in `config\app.php` providers array:

    `Geonetsolutions\Socialwall\SocialWallServiceProvider::class`

---

### Publishing the Included Assets / Config

[](#publishing-the-included-assets--config)

To publish the included Vue.js Social Wall Component Run `php artisan vendor:publish`.

If you are provided with a list choose the option marked: `Geonetsolutions\Socialwall\SocialwallServiceProvider`.

The component will be copied into `resources/assets/js/components/GeonetSocialWallComponent.vue`. Obviously if this doesn't suit your project you can easily override it or implement your own.

The Config file will be published into your main application config folder: `socialwall.php`.

---

### Implementing the Included Vue Component

[](#implementing-the-included-vue-component)

Having setup your application front end tooling using the Laravel docs  implement the included example component as follows:

1. In your application `app.js` add the following:

```
Vue.component('geonet-socialwall', require('./components/GeonetSocialWallComponent.vue'));
