├── composer.json
├── CONTRIBUTING.md
├── app
├── Listeners
│ ├── .gitkeep
│ ├── InstListener.php
│ └── PostUpdatedListener.php
├── Policies
│ └── .gitkeep
├── Events
│ ├── Event.php
│ ├── Inst.php
│ └── PostUpdated.php
├── Tags.php
├── Http
│ ├── Requests
│ │ └── Request.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── Authenticate.php
│ │ ├── Admin.php
│ │ └── DemoAdmin.php
│ ├── Controllers
│ │ ├── Controller.php
│ │ └── AkbilisimController.php
│ └── Kernel.php
├── Settings.php
├── Widgets.php
├── Pages.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── EventServiceProvider.php
│ ├── RouteServiceProvider.php
│ └── AuthServiceProvider.php
├── Jobs
│ └── Job.php
├── Contacts.php
├── Followers.php
├── Console
│ ├── Commands
│ │ └── Inspire.php
│ └── Kernel.php
├── Categories.php
├── PollVotes.php
├── Reactions.php
├── Exceptions
│ └── Handler.php
└── Entrys.php
├── database
├── seeds
│ ├── .gitkeep
│ ├── PostsTableSeeder.php
│ └── DatabaseSeeder.php
├── migrations
│ ├── .gitkeep
│ ├── 2015_09_09_004605_create_settings_table.php
│ ├── 2015_11_05_073240_create_users_table_banner.php
│ ├── 2015_11_01_183249_create_posts_table_pagination.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2015_11_24_162414_create_followers_table.php
│ ├── 2015_09_22_133125_create_pool_votes_table.php
│ ├── 2015_11_01_075837_create_reaction_votes_table.php
│ ├── 2015_10_06_195254_create_widget_table.php
│ ├── 2015_10_06_171448_create_pages_table.php
│ ├── 2014_04_02_193005_create_translations_table.php
│ ├── 2015_09_25_110638_create_entrys_table.php
│ ├── 2015_09_29_073303_create_popularity_stats_table.php
│ ├── 2015_09_15_172559_create_categories_table.php
│ ├── 2015_11_27_114411_create_contacts_table.php
│ ├── 2015_09_15_105839_create_posts_table.php
│ └── 2014_10_12_000000_create_users_table.php
├── .gitignore
└── factories
│ └── ModelFactory.php
├── public
├── assets
│ ├── css
│ │ ├── app.less
│ │ └── test.css
│ ├── img
│ │ ├── 26a1.png
│ │ ├── 404.png
│ │ ├── logo.png
│ │ ├── quiz.png
│ │ ├── favicon.png
│ │ ├── flogo.png
│ │ ├── shadow.png
│ │ ├── blockquote.png
│ │ ├── featured-icon.png
│ │ └── reactions
│ │ │ ├── cry.gif
│ │ │ ├── fail.gif
│ │ │ ├── lol.gif
│ │ │ ├── wow.gif
│ │ │ ├── angry.gif
│ │ │ ├── awesome.gif
│ │ │ ├── funny.gif
│ │ │ └── loved.gif
│ └── plugins
│ │ └── ckeditor
│ │ ├── plugins
│ │ ├── icons.png
│ │ ├── icons_hidpi.png
│ │ ├── link
│ │ │ ├── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ │ └── anchor.png
│ │ │ └── dialogs
│ │ │ │ └── anchor.js
│ │ ├── smiley
│ │ │ └── images
│ │ │ │ ├── kiss.gif
│ │ │ │ ├── kiss.png
│ │ │ │ ├── heart.gif
│ │ │ │ ├── heart.png
│ │ │ │ ├── cry_smile.gif
│ │ │ │ ├── cry_smile.png
│ │ │ │ ├── envelope.gif
│ │ │ │ ├── envelope.png
│ │ │ │ ├── lightbulb.gif
│ │ │ │ ├── lightbulb.png
│ │ │ │ ├── omg_smile.gif
│ │ │ │ ├── omg_smile.png
│ │ │ │ ├── sad_smile.gif
│ │ │ │ ├── sad_smile.png
│ │ │ │ ├── thumbs_up.gif
│ │ │ │ ├── thumbs_up.png
│ │ │ │ ├── angel_smile.gif
│ │ │ │ ├── angel_smile.png
│ │ │ │ ├── angry_smile.gif
│ │ │ │ ├── angry_smile.png
│ │ │ │ ├── broken_heart.gif
│ │ │ │ ├── broken_heart.png
│ │ │ │ ├── devil_smile.gif
│ │ │ │ ├── devil_smile.png
│ │ │ │ ├── shades_smile.gif
│ │ │ │ ├── shades_smile.png
│ │ │ │ ├── teeth_smile.gif
│ │ │ │ ├── teeth_smile.png
│ │ │ │ ├── thumbs_down.gif
│ │ │ │ ├── thumbs_down.png
│ │ │ │ ├── tongue_smile.gif
│ │ │ │ ├── tongue_smile.png
│ │ │ │ ├── tounge_smile.gif
│ │ │ │ ├── wink_smile.gif
│ │ │ │ ├── wink_smile.png
│ │ │ │ ├── confused_smile.gif
│ │ │ │ ├── confused_smile.png
│ │ │ │ ├── regular_smile.gif
│ │ │ │ ├── regular_smile.png
│ │ │ │ ├── embaressed_smile.gif
│ │ │ │ ├── embarrassed_smile.gif
│ │ │ │ ├── embarrassed_smile.png
│ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ └── whatchutalkingabout_smile.png
│ │ ├── image
│ │ │ └── images
│ │ │ │ └── noimage.png
│ │ ├── magicline
│ │ │ └── images
│ │ │ │ ├── icon.png
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── hidpi
│ │ │ │ ├── icon.png
│ │ │ │ └── icon-rtl.png
│ │ ├── widget
│ │ │ └── images
│ │ │ │ └── handle.png
│ │ ├── flash
│ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ ├── forms
│ │ │ ├── images
│ │ │ │ └── hiddenfield.gif
│ │ │ └── dialogs
│ │ │ │ ├── hiddenfield.js
│ │ │ │ └── button.js
│ │ ├── iframe
│ │ │ └── images
│ │ │ │ └── placeholder.png
│ │ ├── pagebreak
│ │ │ └── images
│ │ │ │ └── pagebreak.gif
│ │ ├── showblocks
│ │ │ └── images
│ │ │ │ ├── block_h1.png
│ │ │ │ ├── block_h2.png
│ │ │ │ ├── block_h3.png
│ │ │ │ ├── block_h4.png
│ │ │ │ ├── block_h5.png
│ │ │ │ ├── block_h6.png
│ │ │ │ ├── block_p.png
│ │ │ │ ├── block_div.png
│ │ │ │ ├── block_pre.png
│ │ │ │ ├── block_address.png
│ │ │ │ └── block_blockquote.png
│ │ ├── about
│ │ │ └── dialogs
│ │ │ │ ├── logo_ckeditor.png
│ │ │ │ ├── hidpi
│ │ │ │ └── logo_ckeditor.png
│ │ │ │ └── about.js
│ │ ├── templates
│ │ │ └── templates
│ │ │ │ └── images
│ │ │ │ ├── template1.gif
│ │ │ │ ├── template2.gif
│ │ │ │ └── template3.gif
│ │ ├── dialog
│ │ │ └── dialogDefinition.js
│ │ ├── preview
│ │ │ └── preview.html
│ │ ├── scayt
│ │ │ ├── skins
│ │ │ │ └── moono-lisa
│ │ │ │ │ └── scayt.css
│ │ │ ├── dialogs
│ │ │ │ ├── dialog.css
│ │ │ │ └── toolbar.css
│ │ │ ├── README.md
│ │ │ ├── CHANGELOG.md
│ │ │ └── LICENSE.md
│ │ ├── specialchar
│ │ │ └── dialogs
│ │ │ │ └── lang
│ │ │ │ └── _translationstatus.txt
│ │ ├── colordialog
│ │ │ └── dialogs
│ │ │ │ └── colordialog.css
│ │ ├── a11yhelp
│ │ │ └── dialogs
│ │ │ │ └── lang
│ │ │ │ └── _translationstatus.txt
│ │ ├── wsc
│ │ │ ├── README.md
│ │ │ ├── skins
│ │ │ │ └── moono-lisa
│ │ │ │ │ └── wsc.css
│ │ │ ├── dialogs
│ │ │ │ └── wsc.css
│ │ │ └── LICENSE.md
│ │ ├── tableselection
│ │ │ └── styles
│ │ │ │ └── tableselection.css
│ │ └── copyformatting
│ │ │ └── styles
│ │ │ └── copyformatting.css
│ │ ├── samples
│ │ ├── img
│ │ │ ├── logo.png
│ │ │ ├── header-bg.png
│ │ │ ├── github-top.png
│ │ │ ├── navigation-tip.png
│ │ │ └── header-separator.png
│ │ ├── old
│ │ │ ├── assets
│ │ │ │ ├── sample.jpg
│ │ │ │ ├── inlineall
│ │ │ │ │ └── logo.png
│ │ │ │ ├── uilanguages
│ │ │ │ │ └── languages.js
│ │ │ │ └── posteddata.php
│ │ │ ├── htmlwriter
│ │ │ │ └── assets
│ │ │ │ │ └── outputforflash
│ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ └── outputforflash.swf
│ │ │ ├── sample_posteddata.php
│ │ │ ├── dialog
│ │ │ │ └── assets
│ │ │ │ │ └── my_dialog.js
│ │ │ └── sample.js
│ │ ├── toolbarconfigurator
│ │ │ └── font
│ │ │ │ ├── fontello.eot
│ │ │ │ ├── fontello.ttf
│ │ │ │ ├── fontello.woff
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── config.json
│ │ │ │ └── fontello.svg
│ │ └── js
│ │ │ └── sample.js
│ │ ├── config.js
│ │ └── README.md
├── adminlte
│ ├── plugins
│ │ ├── iCheck
│ │ │ ├── flat
│ │ │ │ ├── aero.png
│ │ │ │ ├── blue.png
│ │ │ │ ├── flat.png
│ │ │ │ ├── grey.png
│ │ │ │ ├── pink.png
│ │ │ │ ├── red.png
│ │ │ │ ├── green.png
│ │ │ │ ├── orange.png
│ │ │ │ ├── purple.png
│ │ │ │ ├── red@2x.png
│ │ │ │ ├── yellow.png
│ │ │ │ ├── aero@2x.png
│ │ │ │ ├── blue@2x.png
│ │ │ │ ├── flat@2x.png
│ │ │ │ ├── green@2x.png
│ │ │ │ ├── grey@2x.png
│ │ │ │ ├── orange@2x.png
│ │ │ │ ├── pink@2x.png
│ │ │ │ ├── purple@2x.png
│ │ │ │ ├── yellow@2x.png
│ │ │ │ ├── flat.css
│ │ │ │ ├── red.css
│ │ │ │ ├── aero.css
│ │ │ │ ├── blue.css
│ │ │ │ ├── grey.css
│ │ │ │ ├── pink.css
│ │ │ │ ├── green.css
│ │ │ │ ├── orange.css
│ │ │ │ ├── purple.css
│ │ │ │ └── yellow.css
│ │ │ ├── line
│ │ │ │ ├── line.png
│ │ │ │ └── line@2x.png
│ │ │ ├── minimal
│ │ │ │ ├── red.png
│ │ │ │ ├── aero.png
│ │ │ │ ├── blue.png
│ │ │ │ ├── green.png
│ │ │ │ ├── grey.png
│ │ │ │ ├── orange.png
│ │ │ │ ├── pink.png
│ │ │ │ ├── purple.png
│ │ │ │ ├── red@2x.png
│ │ │ │ ├── yellow.png
│ │ │ │ ├── aero@2x.png
│ │ │ │ ├── blue@2x.png
│ │ │ │ ├── green@2x.png
│ │ │ │ ├── grey@2x.png
│ │ │ │ ├── minimal.png
│ │ │ │ ├── pink@2x.png
│ │ │ │ ├── minimal@2x.png
│ │ │ │ ├── orange@2x.png
│ │ │ │ ├── purple@2x.png
│ │ │ │ ├── yellow@2x.png
│ │ │ │ ├── minimal.css
│ │ │ │ ├── red.css
│ │ │ │ ├── aero.css
│ │ │ │ ├── blue.css
│ │ │ │ ├── grey.css
│ │ │ │ └── pink.css
│ │ │ ├── square
│ │ │ │ ├── aero.png
│ │ │ │ ├── blue.png
│ │ │ │ ├── grey.png
│ │ │ │ ├── pink.png
│ │ │ │ ├── red.png
│ │ │ │ ├── aero@2x.png
│ │ │ │ ├── blue@2x.png
│ │ │ │ ├── green.png
│ │ │ │ ├── grey@2x.png
│ │ │ │ ├── orange.png
│ │ │ │ ├── pink@2x.png
│ │ │ │ ├── purple.png
│ │ │ │ ├── red@2x.png
│ │ │ │ ├── square.png
│ │ │ │ ├── yellow.png
│ │ │ │ ├── green@2x.png
│ │ │ │ ├── orange@2x.png
│ │ │ │ ├── purple@2x.png
│ │ │ │ ├── square@2x.png
│ │ │ │ ├── yellow@2x.png
│ │ │ │ ├── square.css
│ │ │ │ ├── red.css
│ │ │ │ ├── aero.css
│ │ │ │ ├── blue.css
│ │ │ │ ├── grey.css
│ │ │ │ ├── pink.css
│ │ │ │ └── green.css
│ │ │ ├── polaris
│ │ │ │ ├── polaris.png
│ │ │ │ ├── polaris@2x.png
│ │ │ │ └── polaris.css
│ │ │ ├── futurico
│ │ │ │ ├── futurico.png
│ │ │ │ ├── futurico@2x.png
│ │ │ │ └── futurico.css
│ │ │ └── all.css
│ │ ├── colorpicker
│ │ │ └── img
│ │ │ │ ├── alpha.png
│ │ │ │ ├── hue.png
│ │ │ │ ├── saturation.png
│ │ │ │ ├── hue-horizontal.png
│ │ │ │ └── alpha-horizontal.png
│ │ ├── datatables
│ │ │ └── images
│ │ │ │ ├── sort_asc.png
│ │ │ │ ├── sort_both.png
│ │ │ │ ├── sort_desc.png
│ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ └── sort_desc_disabled.png
│ │ ├── morris
│ │ │ └── morris.css
│ │ └── ckeditor
│ │ │ └── README.md
│ └── bootstrap
│ │ └── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
└── .htaccess
├── bootstrap
├── cache
│ └── .gitignore
├── autoload.php
└── app.php
├── config
├── db-config.php
├── datatables.php
├── image.php
├── translation-manager.php
├── compile.php
├── view.php
├── services.php
├── broadcasting.php
└── installer.php
├── .htaccess
├── .gitignore
├── README.md
├── gulpfile.js
├── bower.json
├── .env-example
├── package.json
├── LICENSE
└── artisan
/composer.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Listeners/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/Policies/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/assets/css/app.less:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/config/db-config.php:
--------------------------------------------------------------------------------
1 | 'settings'
5 | );
--------------------------------------------------------------------------------
/public/assets/img/26a1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/img/26a1.png
--------------------------------------------------------------------------------
/public/assets/img/404.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/img/404.png
--------------------------------------------------------------------------------
/public/assets/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/img/logo.png
--------------------------------------------------------------------------------
/public/assets/img/quiz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/img/quiz.png
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | RewriteEngine On
3 | RewriteRule ^(.*)$ public/$1 [L]
4 |
--------------------------------------------------------------------------------
/public/assets/img/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/img/favicon.png
--------------------------------------------------------------------------------
/public/assets/img/flogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/img/flogo.png
--------------------------------------------------------------------------------
/public/assets/img/shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/img/shadow.png
--------------------------------------------------------------------------------
/app/Events/Event.php:
--------------------------------------------------------------------------------
1 | [
6 | 'case_insensitive' => true,
7 | 'use_wildcards' => false,
8 | ]
9 |
10 | ];
11 |
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/flash/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/flash/images/placeholder.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/forms/images/hiddenfield.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/forms/images/hiddenfield.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/iframe/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/iframe/images/placeholder.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/magicline/images/icon-rtl.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/pagebreak/images/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/pagebreak/images/pagebreak.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h1.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h2.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h3.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h4.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h5.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_h6.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_p.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_p.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/angel_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/angel_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/angel_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/angel_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/angry_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/angry_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/angry_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/angry_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/broken_heart.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/broken_heart.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/broken_heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/broken_heart.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/devil_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/devil_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/devil_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/devil_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/shades_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/shades_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/shades_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/shades_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/teeth_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/teeth_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/teeth_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/teeth_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/thumbs_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/thumbs_down.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/thumbs_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/thumbs_down.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/tongue_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/tongue_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/tongue_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/tongue_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/tounge_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/tounge_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/wink_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/wink_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/wink_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/wink_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/samples/old/assets/inlineall/logo.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_div.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_div.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_pre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_pre.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/confused_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/confused_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/confused_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/confused_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/regular_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/regular_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/regular_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/regular_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_address.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/embaressed_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/embaressed_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.eot
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.ttf
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/showblocks/images/block_blockquote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/showblocks/images/block_blockquote.png
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/templates/templates/images/template1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/templates/templates/images/template1.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/templates/templates/images/template2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/templates/templates/images/template2.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/templates/templates/images/template3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/plugins/templates/templates/images/template3.gif
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tortuvshin/newsfeed/HEAD/public/assets/plugins/ckeditor/samples/toolbarconfigurator/font/fontello.woff
--------------------------------------------------------------------------------
/app/Http/Requests/Request.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | // Prevent from DOM clobbering.
4 | if ( typeof window.opener._cke_htmlToLoad == 'string' ) {
5 | var doc = document;
6 | doc.open();
7 | doc.write( window.opener._cke_htmlToLoad );
8 | doc.close();
9 |
10 | delete window.opener._cke_htmlToLoad;
11 | }
12 |
13 |
14 |
--------------------------------------------------------------------------------
/public/.htaccess:
--------------------------------------------------------------------------------
1 |
2 |
3 | RewriteEngine On
4 | RewriteRule ^/(.*)$ /index.php?$1
5 |
6 |
7 | # Redirect Trailing Slashes...
8 | RewriteRule ^(.*)/$ /$1 [L,R=301]
9 |
10 | # Handle Front Controller...
11 | RewriteCond %{REQUEST_FILENAME} !-d
12 | RewriteCond %{REQUEST_FILENAME} !-f
13 | RewriteRule ^ index.php [L]
14 |
--------------------------------------------------------------------------------
/database/seeds/PostsTableSeeder.php:
--------------------------------------------------------------------------------
1 | truncate();
16 |
17 | // factory('App\Posts', 100)->create();
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | * For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 |
6 | CKEDITOR.editorConfig = function( config ) {
7 | // Define changes to default configuration here. For example:
8 | // config.language = 'fr';
9 | // config.uiColor = '#AADC6E';
10 | };
11 |
--------------------------------------------------------------------------------
/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 | "
6 | ],
7 | "description": "SMS",
8 | "main": "",
9 | "license": "MIT",
10 | "private": true,
11 | "ignore": [
12 | "**/.*",
13 | "node_modules",
14 | "bower_components",
15 | "test",
16 | "tests"
17 | ]
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/public/adminlte/plugins/morris/morris.css:
--------------------------------------------------------------------------------
1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;}
2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;}
3 |
--------------------------------------------------------------------------------
/.env-example:
--------------------------------------------------------------------------------
1 | DB_HOST=localhost
2 | DB_DATABASE=
3 | DB_USERNAME=
4 | DB_PASSWORD=
5 |
6 | MAIL_DRIVER=smtp
7 | MAIL_HOST=
8 | MAIL_PORT=
9 | MAIL_USERNAME=
10 | MAIL_PASSWORD=
11 | MAIL_ENCRYPTION=
12 |
13 | APP_ENV=local
14 | APP_DEBUG=true
15 | APP_KEY=aXdxUV5mfSN05PcMg2WBmsd1QQ2Ma7zc
16 |
17 | APP_FILESYSTEM=local
18 | S3_KEY=
19 | S3_SECRET=
20 | S3_REGION=
21 | S3_BUCKET=
22 |
23 | VKONTAKTE_KEY=
24 | VKONTAKTE_SECRET=
25 | VKONTAKTE_CALLBACKURL=http://yoursitename.com/auth/social/vkontakte/callback
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css:
--------------------------------------------------------------------------------
1 | .scayt-lang-list > div
2 | {
3 | padding-bottom: 6px !important;
4 | }
5 |
6 | .scayt-lang-list > div input
7 | {
8 | margin-right: 4px;
9 | }
10 |
11 | #scayt_about_
12 | {
13 | margin: 30px auto 0 auto;
14 | }
15 |
16 | #scayt_about_ p
17 | {
18 | text-align: center;
19 | margin-bottom: 10px;
20 | }
21 |
22 | .cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button
23 | {
24 | margin-top: 0;
25 | }
26 |
--------------------------------------------------------------------------------
/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
1 | 'gd'
19 |
20 | );
21 |
--------------------------------------------------------------------------------
/app/Jobs/Job.php:
--------------------------------------------------------------------------------
1 | call(UsersTableSeeder::class);
22 |
23 | $this->call(CategoriesTableSeeder::class);
24 |
25 | // $this->call(PostsTableSeeder::class);
26 |
27 |
28 | Model::reguard();
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/public/assets/css/test.css:
--------------------------------------------------------------------------------
1 | .header__logo, .language-links hor, .footer {
2 | display: none !important;
3 | }
4 |
5 | .content-wrapper {
6 | background: rgba(250, 250, 250, 1) !important;
7 | }
8 |
9 | .column1 .items_lists>.item {
10 | position: relative;
11 | counter-increment: li;
12 | background: #fff;
13 | box-shadow: 0 1px 4px rgba(0,0,0,.04);
14 | border: 1px solid rgba(0,0,0,.09);
15 | border-radius: 3px;
16 | padding: 10px;
17 | margin-bottom: 15px;
18 | }
19 |
20 | .login-button {
21 | position: absolute !important;
22 | top: 10px !important;
23 | right: 10px !important;
24 | }
--------------------------------------------------------------------------------
/app/Events/Inst.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('key', 255)->index()->unique();
19 | $table->text('value');
20 |
21 | }
22 | );
23 | }
24 |
25 | /**
26 | * Reverse the migrations.
27 | *
28 | * @return void
29 | */
30 | public function down() {
31 |
32 | Schema::drop('settings');
33 | }
34 |
35 | }
--------------------------------------------------------------------------------
/app/Listeners/InstListener.php:
--------------------------------------------------------------------------------
1 | mailer = $mailer;
20 | }
21 |
22 | /**
23 | * Handle the event.
24 | *
25 | * @param Inst $event
26 | * @return void
27 | */
28 | public function handle(Inst $event)
29 | {
30 |
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/database/migrations/2015_11_05_073240_create_users_table_banner.php:
--------------------------------------------------------------------------------
1 | string('splash', 200)->nullable();
18 | });
19 | }
20 |
21 | /**
22 | * Reverse the migrations.
23 | *
24 | * @return void
25 | */
26 | public function down()
27 | {
28 | //
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/database/migrations/2015_11_01_183249_create_posts_table_pagination.php:
--------------------------------------------------------------------------------
1 | integer('pagination')->nullable();
18 | });
19 | }
20 |
21 | /**
22 | * Reverse the migrations.
23 | *
24 | * @return void
25 | */
26 | public function down()
27 | {
28 | //
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/samples/toolbarconfigurator/font/config.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "",
3 | "css_prefix_text": "icon-",
4 | "css_use_suffix": false,
5 | "hinting": true,
6 | "units_per_em": 1000,
7 | "ascent": 850,
8 | "glyphs": [
9 | {
10 | "uid": "f48ae54adfb27d8ada53d0fd9e34ee10",
11 | "css": "trash-empty",
12 | "code": 59392,
13 | "src": "fontawesome"
14 | },
15 | {
16 | "uid": "1c4068ed75209e21af36017df8871802",
17 | "css": "down-big",
18 | "code": 59393,
19 | "src": "fontawesome"
20 | },
21 | {
22 | "uid": "95376bf082bfec6ce06ea1cda7bd7ead",
23 | "css": "up-big",
24 | "code": 59394,
25 | "src": "fontawesome"
26 | }
27 | ]
28 | }
--------------------------------------------------------------------------------
/app/Contacts.php:
--------------------------------------------------------------------------------
1 | belongsTo('App\Categories', 'category_id');
17 | }
18 |
19 | public function label()
20 | {
21 | return $this->belongsTo('App\Categories', 'label_id');
22 | }
23 |
24 | public function getEmailAttribute($value)
25 | {
26 | $valore=explode("@",$value);
27 | return 'secretfordemo@'.$valore[1];
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/app/Followers.php:
--------------------------------------------------------------------------------
1 | belongsTo('App\User', 'user_id');
18 | }
19 |
20 |
21 | public function followed()
22 | {
23 | return $this->belongsTo('App\User', 'followed_id');
24 | }
25 |
26 |
27 |
28 |
29 | public function scopeCurrentUserFollow($query)
30 | {
31 | if(!\Auth::check()){
32 | return null;
33 | }
34 |
35 | return $query->where("user_id", \Auth::user()->id);
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/Console/Commands/Inspire.php:
--------------------------------------------------------------------------------
1 | comment(PHP_EOL.Inspiring::quote().PHP_EOL);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/Console/Kernel.php:
--------------------------------------------------------------------------------
1 | command('inspire')
28 | ->hourly();
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
17 | $table->string('token')->index();
18 | $table->timestamp('created_at');
19 | });
20 | }
21 |
22 | /**
23 | * Reverse the migrations.
24 | *
25 | * @return void
26 | */
27 | public function down()
28 | {
29 | Schema::drop('password_resets');
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/database/migrations/2015_11_24_162414_create_followers_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
17 | $table->integer('user_id');
18 | $table->integer('followed_id');
19 | $table->timestamps();
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::drop('followers');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Categories.php:
--------------------------------------------------------------------------------
1 | hasMany('App\Posts', 'category_id');
17 | }
18 |
19 |
20 | public function mailcontact()
21 | {
22 | return $this->hasMany('App\Contacts', 'category_id');
23 | }
24 |
25 | public function maillabel()
26 | {
27 | return $this->hasMany('App\Contacts', 'label_id');
28 | }
29 |
30 |
31 |
32 | public function scopeByType($query, $type)
33 | {
34 | return $query->where("type", $type);
35 | }
36 |
37 |
38 | }
39 |
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
2 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
3 |
4 | cs.js Found: 118 Missing: 0
5 | cy.js Found: 118 Missing: 0
6 | de.js Found: 118 Missing: 0
7 | el.js Found: 16 Missing: 102
8 | eo.js Found: 118 Missing: 0
9 | et.js Found: 31 Missing: 87
10 | fa.js Found: 24 Missing: 94
11 | fi.js Found: 23 Missing: 95
12 | fr.js Found: 118 Missing: 0
13 | hr.js Found: 23 Missing: 95
14 | it.js Found: 118 Missing: 0
15 | nb.js Found: 118 Missing: 0
16 | nl.js Found: 118 Missing: 0
17 | no.js Found: 118 Missing: 0
18 | tr.js Found: 118 Missing: 0
19 | ug.js Found: 39 Missing: 79
20 | zh-cn.js Found: 118 Missing: 0
21 |
--------------------------------------------------------------------------------
/database/migrations/2015_09_22_133125_create_pool_votes_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
17 | $table->integer('post_id');
18 | $table->string('user_id', 25);
19 | $table->integer('option_id');
20 | $table->timestamps();
21 | });
22 | }
23 |
24 | /**
25 | * Reverse the migrations.
26 | *
27 | * @return void
28 | */
29 | public function down()
30 | {
31 | Schema::drop('poll_votes');
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/database/migrations/2015_11_01_075837_create_reaction_votes_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
17 | $table->integer('post_id');
18 | $table->string('user_id', 25);
19 | $table->string('reaction_type', 25);
20 | $table->timestamps();
21 | });
22 | }
23 |
24 | /**
25 | * Reverse the migrations.
26 | *
27 | * @return void
28 | */
29 | public function down()
30 | {
31 | Schema::drop('reactions');
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/database/migrations/2015_10_06_195254_create_widget_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
17 | $table->string('key');
18 | $table->text('text');
19 | $table->string('display',20);
20 | $table->string('type',20);
21 | $table->timestamps();
22 | });
23 | }
24 |
25 | /**
26 | * Reverse the migrations.
27 | *
28 | * @return void
29 | */
30 | public function down()
31 | {
32 | Schema::drop('widgets');
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/public/assets/plugins/ckeditor/samples/old/sample_posteddata.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | -------------------------------------------------------------------------------------------
4 | CKEditor - Posted Data
5 |
6 | We are sorry, but your Web server does not support the PHP language used in this script.
7 |
8 | Please note that CKEditor can be used with any other server-side language than just PHP.
9 | To save the content created with CKEditor you need to read the POST data on the server
10 | side and write it to a file or the database.
11 |
12 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
13 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
14 | -------------------------------------------------------------------------------------------
15 |
16 |