├── public ├── favicon.ico ├── robots.txt ├── mix-manifest.json ├── images │ ├── avatars │ │ ├── default.png │ │ └── default.svg │ ├── best-answer.svg │ ├── notifi.svg │ ├── search.svg │ ├── replies.svg │ ├── popular-thread.svg │ ├── visits.svg │ ├── unsw-thread.svg │ ├── all-threads.svg │ └── little-guy.svg ├── .htaccess ├── web.config ├── css │ └── vendor │ │ └── jquery.atwho.css └── index.php ├── database ├── .gitignore ├── seeds │ ├── DatabaseSeeder.php │ └── UsersSeeder.php └── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_03_14_180530_create_replies_table.php │ ├── 2017_05_23_214221_create_notifications_table.php │ ├── 2017_04_21_162429_create_activities_table.php │ ├── 2017_03_30_161938_create_favorites_table.php │ ├── 2018_01_29_141526_create_jobs_table.php │ ├── 2017_03_20_191601_create_channels_table.php │ ├── 2017_05_19_141013_create_thread_subscriptions_table.php │ ├── 2014_10_12_000000_create_users_table.php │ └── 2017_03_15_175959_create_threads_table.php ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── storage ├── debugbar │ └── .gitignore ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── .gitattributes ├── app ├── Exceptions │ └── ThrottleException.php ├── Http │ ├── Controllers │ │ ├── LeaderboardController.php │ │ ├── Api │ │ │ ├── LeaderboardController.php │ │ │ ├── ChannelsController.php │ │ │ ├── UsersController.php │ │ │ └── UserAvatarController.php │ │ ├── Admin │ │ │ └── DashboardController.php │ │ ├── Controller.php │ │ ├── SearchController.php │ │ ├── BestRepliesController.php │ │ ├── HomeController.php │ │ ├── LockedThreadsController.php │ │ ├── PinnedThreadsController.php │ │ ├── ThreadSubscriptionsController.php │ │ ├── Auth │ │ │ ├── RegisterConfirmationController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── LoginController.php │ │ ├── ProfilesController.php │ │ ├── FavoritesController.php │ │ ├── UserNotificationsController.php │ │ └── RepliesController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── LoadCommonData.php │ │ ├── Administrator.php │ │ ├── RedirectIfAuthenticated.php │ │ └── RedirectIfEmailNotConfirmed.php │ └── Requests │ │ └── CreatePostRequest.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Policies │ ├── UserPolicy.php │ ├── ThreadPolicy.php │ └── ReplyPolicy.php ├── Listeners │ ├── NotifySubscribers.php │ └── NotifyMentionedUsers.php ├── Favorite.php ├── Rules │ ├── SpamFree.php │ └── Recaptcha.php ├── Inspections │ ├── Spam.php │ └── InvalidKeywords.php ├── HasReputation.php ├── Events │ ├── ThreadWasPublished.php │ └── ThreadReceivedNewReply.php ├── Mail │ └── PleaseConfirmYourEmail.php ├── Console │ └── Kernel.php ├── ThreadSubscription.php ├── Filters │ ├── ThreadFilters.php │ └── Filters.php ├── Notifications │ ├── ThreadWasUpdated.php │ └── YouWereMentioned.php ├── Activity.php ├── Trending.php ├── RecordsActivity.php ├── Channel.php └── Favoritable.php ├── resources ├── views │ ├── svgs │ │ ├── icons │ │ │ ├── leaderboard.blade.php │ │ │ ├── best-reply.blade.php │ │ │ ├── alarm.blade.php │ │ │ ├── heart.blade.php │ │ │ ├── search.blade.php │ │ │ ├── book.blade.php │ │ │ ├── star.blade.php │ │ │ ├── eye.blade.php │ │ │ ├── question.blade.php │ │ │ └── all-threads.blade.php │ │ └── logo.blade.php │ ├── modals │ │ ├── all.blade.php │ │ └── login.blade.php │ ├── admin │ │ ├── dashboard │ │ │ └── index.blade.php │ │ ├── channels │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── _form.blade.php │ │ │ └── index.blade.php │ │ └── layout │ │ │ └── app.blade.php │ ├── leaderboard │ │ └── index.blade.php │ ├── threads │ │ ├── index.blade.php │ │ ├── show.blade.php │ │ ├── reply.blade.php │ │ └── search.blade.php │ ├── profiles │ │ ├── show.blade.php │ │ └── activities │ │ │ ├── activity.blade.php │ │ │ ├── created_thread.blade.php │ │ │ ├── created_reply.blade.php │ │ │ └── created_favorite.blade.php │ ├── emails │ │ └── confirm-email.blade.php │ ├── home.blade.php │ ├── channels-sidebar.blade.php │ ├── vendor │ │ └── pagination │ │ │ ├── simple-default.blade.php │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ ├── semantic-ui.blade.php │ │ │ ├── bootstrap-4.blade.php │ │ │ └── default.blade.php │ ├── layouts │ │ ├── base.blade.php │ │ └── app.blade.php │ ├── breadcrumbs.blade.php │ └── auth │ │ └── passwords │ │ └── email.blade.php ├── assets │ ├── sass │ │ ├── components │ │ │ ├── widget.scss │ │ │ └── _btn.scss │ │ ├── sections │ │ │ ├── search.scss │ │ │ └── _trix.scss │ │ ├── _timeline.scss │ │ ├── app.scss │ │ └── _variables.scss │ └── js │ │ ├── authorizations.js │ │ ├── mixins │ │ ├── collection.js │ │ └── activation.js │ │ ├── components │ │ ├── LogoutButton.vue │ │ ├── ImageUpload.vue │ │ ├── Dropdown.vue │ │ ├── ActivityLayout.vue │ │ ├── SubscribeButton.vue │ │ ├── Register.vue │ │ ├── Highlight.vue │ │ ├── Wysiwyg.vue │ │ ├── Login.vue │ │ ├── ActivityFavorite.vue │ │ ├── Paginator.vue │ │ ├── Leaderboard.vue │ │ ├── AvatarForm.vue │ │ ├── Replies.vue │ │ ├── Flash.vue │ │ ├── Favorite.vue │ │ ├── Activities.vue │ │ └── ChannelDropdown.vue │ │ └── app.js └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ └── passwords.php ├── .gitignore ├── .travis.yml ├── webpack.mix.js ├── tests ├── utilities │ └── functions.php ├── Unit │ ├── SpamTest.php │ ├── UserTest.php │ ├── ActivityTest.php │ ├── ChannelTest.php │ └── TrendingTest.php ├── Feature │ ├── ProfilesTest.php │ ├── TrendingThreadsTest.php │ ├── Admin │ │ └── AdministratorTest.php │ ├── SearchTest.php │ ├── SubscribeToThreadsTest.php │ ├── LeaderboardTest.php │ ├── AddAvatarTest.php │ ├── UpdateThreadsTest.php │ ├── FavoritesTest.php │ ├── BestReplyTest.php │ ├── LockThreadsTest.php │ └── NotificationsTest.php ├── CreatesApplication.php └── TestCase.php ├── .env.travis ├── config ├── council.php ├── hashing.php ├── view.php ├── services.php ├── broadcasting.php └── logging.php ├── CODE_OF_CONDUCT.md ├── routes ├── channels.php ├── api.php └── console.php ├── server.php ├── .env.example ├── LICENSE.md ├── readme.md ├── package.json ├── phpunit.xml ├── artisan └── composer.json /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /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/testing/.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 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } -------------------------------------------------------------------------------- /public/images/avatars/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffreyWay/council/HEAD/public/images/avatars/default.png -------------------------------------------------------------------------------- /app/Exceptions/ThrottleException.php: -------------------------------------------------------------------------------- 1 | 2 |
You are on the administration dashboard.
5 | @endsection 6 | -------------------------------------------------------------------------------- /resources/views/leaderboard/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |12 | Posted By: {{ 13 | activity.favoritedModel.thread.creator.username }} 14 |
15 |11 | This thread has been locked. No more replies are allowed. 12 |
13 | 14 |5 | 6 | New Channel 7 | 8 |
9 | 10 || Name | 14 |Slug | 15 |Description | 16 |Threads | 17 |Actions | 18 ||
|---|---|---|---|---|---|
| 25 | 26 | | 27 |{{ $channel->name }} | 28 |{{ $channel->slug }} | 29 |{{ $channel->description }} | 30 |{{ $channel->threads_count }} | 31 |32 | Edit 33 | | 34 |
| Nothing here. | 38 ||||||