├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── app ├── commands │ ├── .gitkeep │ └── AppCommand.php ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── mail.php │ ├── packages │ │ ├── .gitkeep │ │ └── cartalyst │ │ │ └── sentry │ │ │ └── config.php │ ├── permissions.php │ ├── queue.php │ ├── session.php │ ├── testing │ │ ├── cache.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── .gitkeep │ ├── AdminController.php │ ├── AuthController.php │ ├── AuthorizedController.php │ ├── BaseController.php │ ├── BlogController.php │ ├── ContactUsController.php │ ├── HomeController.php │ ├── account │ │ ├── ChangeEmailController.php │ │ ├── ChangePasswordController.php │ │ ├── DashboardController.php │ │ └── ProfileController.php │ └── admin │ │ ├── BlogsController.php │ │ ├── DashboardController.php │ │ ├── GroupsController.php │ │ └── UsersController.php ├── database │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2013_01_19_011903_create_posts_table.php │ │ ├── 2013_01_19_044505_create_comments_table.php │ │ └── 2013_03_23_193214_update_users_table.php │ ├── production.sqlite │ └── seeds │ │ ├── .gitkeep │ │ ├── CommentsSeeder.php │ │ ├── DatabaseSeeder.php │ │ ├── PostsSeeder.php │ │ ├── comment1-content.txt │ │ ├── comment2-content.txt │ │ ├── comment3-content.txt │ │ └── post-content.txt ├── filters.php ├── lang │ └── en │ │ ├── admin │ │ ├── blogs │ │ │ ├── message.php │ │ │ └── table.php │ │ ├── groups │ │ │ ├── message.php │ │ │ └── table.php │ │ └── users │ │ │ ├── message.php │ │ │ └── table.php │ │ ├── auth │ │ └── message.php │ │ ├── button.php │ │ ├── general.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── table.php │ │ └── validation.php ├── models │ ├── Authentication.php │ ├── Comment.php │ ├── Group.php │ ├── Post.php │ └── User.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── tests │ ├── ExampleTest.php │ └── TestCase.php └── views │ ├── backend │ ├── blogs │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── dashboard.blade.php │ ├── groups │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── layouts │ │ └── default.blade.php │ └── users │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── emails │ ├── auth │ │ └── reminder.blade.php │ ├── forgot-password.blade.php │ ├── layouts │ │ └── default.blade.php │ └── register-activate.blade.php │ ├── error │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 500.blade.php │ └── 503.blade.php │ ├── frontend │ ├── about-us.blade.php │ ├── account │ │ ├── change-email.blade.php │ │ ├── change-password.blade.php │ │ └── profile.blade.php │ ├── auth │ │ ├── forgot-password-confirm.blade.php │ │ ├── forgot-password.blade.php │ │ ├── signin.blade.php │ │ └── signup.blade.php │ ├── blog │ │ ├── index.blade.php │ │ └── view-post.blade.php │ ├── contact-us.blade.php │ ├── layouts │ │ ├── account.blade.php │ │ └── default.blade.php │ └── notifications.blade.php │ ├── hello.php │ └── paginator │ ├── simple.php │ └── slider.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── composer.lock ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── ico │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ ├── apple-touch-icon-72-precomposed.png │ │ └── favicon.png │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── social │ │ │ ├── fb_login.png │ │ │ └── fb_signup.png │ └── js │ │ ├── bootstrap │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ │ └── jquery.1.10.2.min.js ├── favicon.ico ├── index.php ├── packages │ └── .gitkeep └── robots.txt ├── readme.md └── server.php /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/AppCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/commands/AppCommand.php -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/cartalyst/sentry/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/packages/cartalyst/sentry/config.php -------------------------------------------------------------------------------- /app/config/permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/permissions.php -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/AdminController.php -------------------------------------------------------------------------------- /app/controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/AuthController.php -------------------------------------------------------------------------------- /app/controllers/AuthorizedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/AuthorizedController.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/BlogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/BlogController.php -------------------------------------------------------------------------------- /app/controllers/ContactUsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/ContactUsController.php -------------------------------------------------------------------------------- /app/controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/HomeController.php -------------------------------------------------------------------------------- /app/controllers/account/ChangeEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/account/ChangeEmailController.php -------------------------------------------------------------------------------- /app/controllers/account/ChangePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/account/ChangePasswordController.php -------------------------------------------------------------------------------- /app/controllers/account/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/account/DashboardController.php -------------------------------------------------------------------------------- /app/controllers/account/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/account/ProfileController.php -------------------------------------------------------------------------------- /app/controllers/admin/BlogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/admin/BlogsController.php -------------------------------------------------------------------------------- /app/controllers/admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/admin/DashboardController.php -------------------------------------------------------------------------------- /app/controllers/admin/GroupsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/admin/GroupsController.php -------------------------------------------------------------------------------- /app/controllers/admin/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/controllers/admin/UsersController.php -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/2013_01_19_011903_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/migrations/2013_01_19_011903_create_posts_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_01_19_044505_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/migrations/2013_01_19_044505_create_comments_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_03_23_193214_update_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/migrations/2013_03_23_193214_update_users_table.php -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/CommentsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/seeds/CommentsSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/PostsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/seeds/PostsSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/comment1-content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/seeds/comment1-content.txt -------------------------------------------------------------------------------- /app/database/seeds/comment2-content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/seeds/comment2-content.txt -------------------------------------------------------------------------------- /app/database/seeds/comment3-content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/seeds/comment3-content.txt -------------------------------------------------------------------------------- /app/database/seeds/post-content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/database/seeds/post-content.txt -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/lang/en/admin/blogs/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/admin/blogs/message.php -------------------------------------------------------------------------------- /app/lang/en/admin/blogs/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/admin/blogs/table.php -------------------------------------------------------------------------------- /app/lang/en/admin/groups/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/admin/groups/message.php -------------------------------------------------------------------------------- /app/lang/en/admin/groups/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/admin/groups/table.php -------------------------------------------------------------------------------- /app/lang/en/admin/users/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/admin/users/message.php -------------------------------------------------------------------------------- /app/lang/en/admin/users/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/admin/users/table.php -------------------------------------------------------------------------------- /app/lang/en/auth/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/auth/message.php -------------------------------------------------------------------------------- /app/lang/en/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/button.php -------------------------------------------------------------------------------- /app/lang/en/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/general.php -------------------------------------------------------------------------------- /app/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/pagination.php -------------------------------------------------------------------------------- /app/lang/en/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/reminders.php -------------------------------------------------------------------------------- /app/lang/en/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/table.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/models/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/models/Authentication.php -------------------------------------------------------------------------------- /app/models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/models/Comment.php -------------------------------------------------------------------------------- /app/models/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/models/Group.php -------------------------------------------------------------------------------- /app/models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/models/Post.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunogaspar/laravel-starter-kit/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 |