实例介绍
laravel框架使用DEMO, laravel-tricks
【实例截图】
【核心代码】
laravel-tricks-master
└── laravel-tricks-master
├── app
│ ├── commands
│ ├── config
│ │ ├── app.php
│ │ ├── auth.php
│ │ ├── cache.php
│ │ ├── compile.php
│ │ ├── config.php
│ │ ├── database.php
│ │ ├── local
│ │ │ ├── app.php
│ │ │ ├── cache.php
│ │ │ ├── queue.php
│ │ │ └── session.php
│ │ ├── mail.php
│ │ ├── navigation.php
│ │ ├── packages
│ │ │ ├── itsgoingd
│ │ │ │ └── clockwork
│ │ │ │ └── config.php
│ │ │ └── thomaswelton
│ │ │ └── laravel-gravatar
│ │ │ └── config.php
│ │ ├── queue.php
│ │ ├── remote.php
│ │ ├── session.php
│ │ ├── sitemap.php
│ │ ├── social.php
│ │ ├── testing
│ │ │ ├── cache.php
│ │ │ └── session.php
│ │ ├── view.php
│ │ └── workbench.php
│ ├── Controllers
│ │ ├── Admin
│ │ │ ├── CategoriesController.php
│ │ │ ├── TagsController.php
│ │ │ └── UsersController.php
│ │ ├── AuthController.php
│ │ ├── BaseController.php
│ │ ├── BrowseController.php
│ │ ├── FeedsController.php
│ │ ├── HomeController.php
│ │ ├── RemindersController.php
│ │ ├── SearchController.php
│ │ ├── SitemapController.php
│ │ ├── TricksController.php
│ │ ├── UserController.php
│ │ └── UserTricksController.php
│ ├── database
│ │ ├── migrations
│ │ │ ├── 2013_11_13_222806_create_users_table.php
│ │ │ ├── 2013_11_13_222807_create_tricks_table.php
│ │ │ ├── 2013_11_13_222808_create_tags_table.php
│ │ │ ├── 2013_11_13_222809_create_categories_table.php
│ │ │ ├── 2013_11_13_222810_create_votes_table.php
│ │ │ ├── 2013_11_13_222811_create_tag_trick_table.php
│ │ │ ├── 2013_11_13_222812_create_category_trick_table.php
│ │ │ ├── 2013_11_13_222813_create_profiles_table.php
│ │ │ ├── 2013_11_20_072925_add_order_to_category_table.php
│ │ │ ├── 2013_11_22_072925_add_spam_to_tricks_table.php
│ │ │ ├── 2013_11_25_202456_create_password_reminders_table.php
│ │ │ └── 2014_04_17_181442_add_remember_to_user_table.php
│ │ ├── production.sqlite
│ │ └── seeds
│ │ ├── CategoriesTableSeeder.php
│ │ ├── DatabaseSeeder.php
│ │ ├── TagsTableSeeder.php
│ │ ├── TricksTableSeeder.php
│ │ └── UsersTableSeeder.php
│ ├── filters.php
│ ├── lang
│ │ └── en
│ │ ├── admin.php
│ │ ├── browse.php
│ │ ├── emails.php
│ │ ├── feeds.php
│ │ ├── home.php
│ │ ├── layouts.php
│ │ ├── pagination.php
│ │ ├── partials.php
│ │ ├── password.php
│ │ ├── reminders.php
│ │ ├── search.php
│ │ ├── tricks.php
│ │ ├── user.php
│ │ ├── user_tricks.php
│ │ └── validation.php
│ ├── routes.php
│ ├── start
│ │ ├── artisan.php
│ │ ├── global.php
│ │ └── local.php
│ ├── storage
│ │ ├── cache
│ │ ├── logs
│ │ ├── meta
│ │ ├── sessions
│ │ └── views
│ ├── tests
│ │ ├── TestCase.php
│ │ └── Tricks
│ │ ├── CategoryTest.php
│ │ ├── Events
│ │ │ └── ViewTrickHandlerTest.php
│ │ ├── Filters
│ │ │ ├── TrickOwnerFilterTest.php
│ │ │ └── ViewThrottleFilterTest.php
│ │ ├── Presenters
│ │ │ ├── TrickPresenterTest.php
│ │ │ └── UserPresenterTest.php
│ │ ├── ProfileTest.php
│ │ ├── Providers
│ │ │ ├── EventServiceProviderTest.php
│ │ │ ├── NavigationServiceProviderTest.php
│ │ │ ├── RepositoryServiceProviderTest.php
│ │ │ ├── SitemapServiceProviderTest.php
│ │ │ ├── SocialServiceProviderTest.php
│ │ │ └── UploadServiceProviderTest.php
│ │ ├── Repositories
│ │ │ └── Eloquent
│ │ │ ├── AbstractRepositoryTest.php
│ │ │ ├── CategoryRepositoryTest.php
│ │ │ └── ProfileRepositoryTest.php
│ │ ├── Services
│ │ │ ├── Feeds
│ │ │ │ └── BuilderTest.php
│ │ │ ├── Forms
│ │ │ │ ├── AbstractFormTest.php
│ │ │ │ ├── RegistrationFormTest.php
│ │ │ │ ├── SettingsFormTest.php
│ │ │ │ ├── TrickEditFormTest.php
│ │ │ │ └── TrickFormTest.php
│ │ │ └── Upload
│ │ │ └── ImageUploadServiceTest.php
│ │ ├── TagTest.php
│ │ ├── TrickTest.php
│ │ └── UserTest.php
│ ├── Tricks
│ │ ├── Category.php
│ │ ├── Events
│ │ │ └── ViewTrickHandler.php
│ │ ├── Exceptions
│ │ │ ├── AbstractNotFoundException.php
│ │ │ ├── CategoryNotFoundException.php
│ │ │ ├── GithubEmailAccessException.php
│ │ │ ├── GithubEmailNotVerifiedException.php
│ │ │ ├── TagNotFoundException.php
│ │ │ └── UserNotFoundException.php
│ │ ├── Facades
│ │ │ ├── Disqus.php
│ │ │ ├── Github.php
│ │ │ ├── GithubProvider.php
│ │ │ ├── ImageUpload.php
│ │ │ └── Navigation.php
│ │ ├── Filters
│ │ │ ├── TrickOwnerFilter.php
│ │ │ └── ViewThrottleFilter.php
│ │ ├── Presenters
│ │ │ ├── TrickPresenter.php
│ │ │ └── UserPresenter.php
│ │ ├── Profile.php
│ │ ├── Providers
│ │ │ ├── EventServiceProvider.php
│ │ │ ├── NavigationServiceProvider.php
│ │ │ ├── RepositoryServiceProvider.php
│ │ │ ├── SitemapServiceProvider.php
│ │ │ ├── SocialServiceProvider.php
│ │ │ └── UploadServiceProvider.php
│ │ ├── Repositories
│ │ │ ├── CategoryRepositoryInterface.php
│ │ │ ├── Eloquent
│ │ │ │ ├── AbstractRepository.php
│ │ │ │ ├── CategoryRepository.php
│ │ │ │ ├── ProfileRepository.php
│ │ │ │ ├── TagRepository.php
│ │ │ │ ├── TrickRepository.php
│ │ │ │ └── UserRepository.php
│ │ │ ├── ProfileRepositoryInterface.php
│ │ │ ├── TagRepositoryInterface.php
│ │ │ ├── TrickRepositoryInterface.php
│ │ │ └── UserRepositoryInterface.php
│ │ ├── Services
│ │ │ ├── Feeds
│ │ │ │ └── Builder.php
│ │ │ ├── Forms
│ │ │ │ ├── AbstractForm.php
│ │ │ │ ├── CategoryForm.php
│ │ │ │ ├── RegistrationForm.php
│ │ │ │ ├── SettingsForm.php
│ │ │ │ ├── TagForm.php
│ │ │ │ ├── TrickEditForm.php
│ │ │ │ └── TrickForm.php
│ │ │ ├── Navigation
│ │ │ │ └── Builder.php
│ │ │ ├── Sitemap
│ │ │ │ ├── Builder.php
│ │ │ │ └── DataProvider.php
│ │ │ ├── Social
│ │ │ │ ├── Disqus.php
│ │ │ │ └── Github.php
│ │ │ └── Upload
│ │ │ └── ImageUploadService.php
│ │ ├── Tag.php
│ │ ├── Trick.php
│ │ └── User.php
│ └── views
│ ├── admin
│ │ ├── categories
│ │ │ ├── edit.blade.php
│ │ │ ├── list.blade.php
│ │ │ └── new.blade.php
│ │ ├── tags
│ │ │ ├── edit.blade.php
│ │ │ ├── list.blade.php
│ │ │ └── new.blade.php
│ │ ├── tricks
│ │ │ ├── edit.blade.php
│ │ │ ├── list.blade.php
│ │ │ └── new.blade.php
│ │ └── users
│ │ ├── edit.blade.php
│ │ ├── list.blade.php
│ │ └── new.blade.php
│ ├── browse
│ │ ├── categories.blade.php
│ │ ├── index.blade.php
│ │ └── tags.blade.php
│ ├── emails
│ │ └── auth
│ │ └── reminder.blade.php
│ ├── feeds
│ │ ├── atom.blade.php
│ │ └── rss.blade.php
│ ├── home
│ │ ├── about.blade.php
│ │ ├── error.blade.php
│ │ ├── index.blade.php
│ │ ├── login.blade.php
│ │ ├── privacy.blade.php
│ │ ├── register.blade.php
│ │ └── terms.blade.php
│ ├── layouts
│ │ └── main.blade.php
│ ├── partials
│ │ ├── footer.blade.php
│ │ ├── navigation.blade.php
│ │ └── search.blade.php
│ ├── password
│ │ ├── remind.blade.php
│ │ └── reset.blade.php
│ ├── search
│ │ └── result.blade.php
│ ├── tricks
│ │ ├── card.blade.php
│ │ ├── delete.blade.php
│ │ ├── edit.blade.php
│ │ ├── grid.blade.php
│ │ ├── new.blade.php
│ │ └── single.blade.php
│ └── user
│ ├── favorites.blade.php
│ ├── profile.blade.php
│ ├── public.blade.php
│ └── settings.blade.php
├── artisan
├── bootstrap
│ ├── autoload.php
│ ├── paths.php
│ ├── start.php
│ └── testing.php
├── Boxfile
├── composer.json
├── LICENSE
├── phpunit.xml
├── public
│ ├── css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.min.css
│ │ ├── highlight
│ │ │ ├── arta.css
│ │ │ ├── ascetic.css
│ │ │ ├── brown_paper.css
│ │ │ ├── brown_papersq.png
│ │ │ ├── dark.css
│ │ │ ├── default.css
│ │ │ ├── docco.css
│ │ │ ├── far.css
│ │ │ ├── foundation.css
│ │ │ ├── github.css
│ │ │ ├── googlecode.css
│ │ │ ├── idea.css
│ │ │ ├── ir_black.css
│ │ │ ├── laratricks.css
│ │ │ ├── magula.css
│ │ │ ├── mono-blue.css
│ │ │ ├── monokai.css
│ │ │ ├── monokai_sublime.css
│ │ │ ├── obsidian.css
│ │ │ ├── pojoaque.css
│ │ │ ├── pojoaque.jpg
│ │ │ ├── railscasts.css
│ │ │ ├── rainbow.css
│ │ │ ├── school_book.css
│ │ │ ├── school_book.png
│ │ │ ├── solarized_dark.css
│ │ │ ├── solarized_light.css
│ │ │ ├── sunburst.css
│ │ │ ├── tomorrow.css
│ │ │ ├── tomorrow-night-blue.css
│ │ │ ├── tomorrow-night-bright.css
│ │ │ ├── tomorrow-night.css
│ │ │ ├── tomorrow-night-eighties.css
│ │ │ ├── vs.css
│ │ │ ├── xcode.css
│ │ │ └── zenburn.css
│ │ ├── Jcrop.gif
│ │ ├── jquery.Jcrop.min.css
│ │ ├── laratricks.css
│ │ ├── laratricks.min.css
│ │ ├── styles.css
│ │ └── ui.totop.css
│ ├── favicon.ico
│ ├── favicon.jpg
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── img
│ │ ├── avatar
│ │ │ ├── 7568ca66ee70f18cfaad8caa8ff6d7576891a3e4.jpg
│ │ │ ├── 865643780afe76667ffcd467c78a30ad44fc5b7d.jpg
│ │ │ ├── index.php
│ │ │ └── temp
│ │ │ └── index.php
│ │ ├── icon-comments.png
│ │ ├── icon-likes.png
│ │ ├── icon-search.png
│ │ ├── icon-views.png
│ │ ├── index.php
│ │ ├── laratricks-logo.png
│ │ ├── logo@2x.png
│ │ ├── logo-big.png
│ │ ├── logo.png
│ │ ├── logo-white50x34.png
│ │ ├── logo-white.png
│ │ ├── no-userpic-big.gif
│ │ ├── pattern.jpg
│ │ ├── thumbnails
│ │ │ └── default.jpg
│ │ └── ui.totop.png
│ ├── index.php
│ ├── js
│ │ ├── new-trick-backup.js
│ │ ├── selectize
│ │ │ ├── css
│ │ │ │ ├── selectize.bootstrap2.css
│ │ │ │ ├── selectize.bootstrap3.css
│ │ │ │ ├── selectize.css
│ │ │ │ ├── selectize.default.css
│ │ │ │ └── selectize.legacy.css
│ │ │ ├── js
│ │ │ │ ├── selectize.js
│ │ │ │ ├── selectize.min.js
│ │ │ │ └── standalone
│ │ │ │ ├── selectize.js
│ │ │ │ └── selectize.min.js
│ │ │ └── less
│ │ │ ├── plugins
│ │ │ │ ├── drag_drop.less
│ │ │ │ ├── dropdown_header.less
│ │ │ │ ├── optgroup_columns.less
│ │ │ │ └── remove_button.less
│ │ │ ├── selectize.bootstrap2.less
│ │ │ ├── selectize.bootstrap3.less
│ │ │ ├── selectize.default.less
│ │ │ ├── selectize.legacy.less
│ │ │ └── selectize.less
│ │ ├── trick-grid-backup.js
│ │ ├── trick-like-backup.js
│ │ ├── trick-new-edit.min.js
│ │ └── vendor
│ │ ├── dropzone.min.js
│ │ ├── easing.js
│ │ ├── highlight.pack.js
│ │ ├── jquery.spin.js
│ │ ├── jquery-ui-1.10.3.custom.min.js
│ │ ├── jquery.ui.totop.min.js
│ │ ├── masonry.pkgd.min.js
│ │ ├── placeholder.min.js
│ │ ├── spin.min.js
│ │ └── uploader
│ │ ├── crossdomain.xml
│ │ ├── FileAPI.exif.js
│ │ ├── FileAPI.flash.camera.swf
│ │ ├── FileAPI.flash.image.swf
│ │ ├── FileAPI.flash.swf
│ │ ├── FileAPI.min.js
│ │ ├── jquery.fileapi.js
│ │ ├── jquery.fileapi.min.js
│ │ └── jquery.Jcrop.min.js
│ ├── packages
│ └── robots.txt
├── readme.md
└── server.php
89 directories, 318 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论