├── public
├── favicon.ico
├── robots.txt
├── mix-manifest.json
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── .htaccess
├── web.config
└── index.php
├── database
├── .gitignore
├── seeds
│ ├── DatabaseSeeder.php
│ └── UserTableSeeder.php
├── migrations
│ ├── 2017_02_12_104959_create_tasks_table.php
│ ├── 2017_02_16_094438_create_comments_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2015_03_18_150935_create_activities_table.php
│ ├── 2017_02_16_101607_create_failed_jobs_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ └── 2017_02_16_101559_create_jobs_table.php
└── factories
│ └── ModelFactory.php
├── bootstrap
├── cache
│ └── .gitignore
├── autoload.php
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── cache
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── .gitattributes
├── resources
├── views
│ ├── activity
│ │ ├── types
│ │ │ ├── favorited_post.blade.php
│ │ │ ├── created_comment.blade.php
│ │ │ └── created_task.blade.php
│ │ ├── show.blade.php
│ │ └── list.blade.php
│ ├── tasks
│ │ └── create.blade.php
│ ├── home.blade.php
│ ├── auth
│ │ ├── passwords
│ │ │ ├── email.blade.php
│ │ │ └── reset.blade.php
│ │ ├── login.blade.php
│ │ └── register.blade.php
│ ├── welcome.blade.php
│ └── layouts
│ │ └── app.blade.php
├── assets
│ ├── sass
│ │ ├── app.scss
│ │ └── _variables.scss
│ └── js
│ │ ├── components
│ │ ├── Example.vue
│ │ ├── Activity.vue
│ │ ├── Tasks.vue
│ │ └── Task.vue
│ │ ├── app.js
│ │ └── bootstrap.js
└── lang
│ └── en
│ ├── pagination.php
│ ├── auth.php
│ ├── passwords.php
│ └── validation.php
├── .gitignore
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── CreatesApplication.php
└── Feature
│ └── ExampleTest.php
├── app
├── Http
│ ├── Controllers
│ │ ├── ActivityController.php
│ │ ├── Controller.php
│ │ ├── TaskController.php
│ │ ├── Api
│ │ │ ├── ActivityController.php
│ │ │ ├── CommentController.php
│ │ │ └── TaskController.php
│ │ ├── HomeController.php
│ │ └── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ └── RegisterController.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── TrimStrings.php
│ │ └── RedirectIfAuthenticated.php
│ └── Kernel.php
├── Comment.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Task.php
├── Activity.php
├── Transformers
│ └── ActivityTransformer.php
├── Console
│ └── Kernel.php
├── Events
│ └── ActivityLogged.php
├── RecordsActivity.php
├── User.php
└── Exceptions
│ └── Handler.php
├── routes
├── channels.php
├── console.php
├── web.php
└── api.php
├── webpack.mix.js
├── server.php
├── readme.md
├── .env.example
├── config
├── services.php
├── view.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── cache.php
├── auth.php
├── database.php
├── mail.php
├── session.php
└── app.php
├── phpunit.xml
├── package.json
├── composer.json
└── artisan
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 |
--------------------------------------------------------------------------------
/resources/views/activity/types/favorited_post.blade.php:
--------------------------------------------------------------------------------
1 | John Doe favorited some post.
--------------------------------------------------------------------------------
/public/mix-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "/js/app.js": "/js/app.js",
3 | "/css/app.css": "/css/app.css"
4 | }
--------------------------------------------------------------------------------
/resources/views/activity/types/created_comment.blade.php:
--------------------------------------------------------------------------------
1 | {{ $event->user->name }} left a comment {{ $event->created_at->diffForHumans() }}
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/viraj-khatavkar/activity-feed-pusher/HEAD/public/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/viraj-khatavkar/activity-feed-pusher/HEAD/public/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/resources/views/tasks/create.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |