├── .gitattributes ├── .gitignore ├── .travis.yml ├── Vagrantfile ├── app ├── commands │ └── .gitkeep ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── mail.php │ ├── packages │ │ ├── .gitkeep │ │ └── zizaco │ │ │ ├── confide │ │ │ ├── .gitkeep │ │ │ └── config.php │ │ │ └── entrust │ │ │ └── config.php │ ├── queue.php │ ├── remote.php │ ├── session.php │ ├── site.php │ ├── testing │ │ ├── cache.php │ │ ├── database.php │ │ └── session.php │ ├── view.php │ └── workbench.php ├── controllers │ ├── .gitkeep │ ├── AdminController.php │ ├── AuthorizedController.php │ ├── BaseController.php │ ├── BlogController.php │ ├── UsersController.php │ ├── admin │ │ ├── AdminBlogsController.php │ │ ├── AdminCommentsController.php │ │ ├── AdminDashboardController.php │ │ ├── AdminRolesController.php │ │ └── AdminUsersController.php │ └── user │ │ └── UserController.php ├── database │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2013_02_05_024934_confide_setup_users_table.php │ │ ├── 2013_02_05_043505_create_posts_table.php │ │ ├── 2013_02_05_044505_create_comments_table.php │ │ ├── 2013_02_08_031702_entrust_setup_tables.php │ │ └── 2013_05_21_024934_entrust_permissions.php │ └── seeds │ │ ├── .gitkeep │ │ ├── CommentsTableSeeder.php │ │ ├── DatabaseSeeder.php │ │ ├── PermissionsTableSeeder.php │ │ ├── PostsTableSeeder.php │ │ ├── RolesTableSeeder.php │ │ └── UsersTableSeeder.php ├── filters.php ├── lang │ ├── en │ │ ├── admin │ │ │ ├── blogs │ │ │ │ ├── messages.php │ │ │ │ ├── table.php │ │ │ │ └── title.php │ │ │ ├── comments │ │ │ │ ├── messages.php │ │ │ │ ├── table.php │ │ │ │ └── title.php │ │ │ ├── companies │ │ │ │ ├── messages.php │ │ │ │ ├── table.php │ │ │ │ └── title.php │ │ │ ├── roles │ │ │ │ ├── messages.php │ │ │ │ ├── table.php │ │ │ │ └── title.php │ │ │ └── users │ │ │ │ ├── messages.php │ │ │ │ ├── table.php │ │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── site.php │ │ ├── table.php │ │ ├── user │ │ │ └── user.php │ │ └── validation.php │ └── pt │ │ ├── admin │ │ ├── blogs │ │ │ ├── messages.php │ │ │ └── table.php │ │ ├── comments │ │ │ ├── messages.php │ │ │ └── table.php │ │ ├── roles │ │ │ ├── messages.php │ │ │ └── table.php │ │ └── users │ │ │ ├── messages.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── reminders.php │ │ ├── site.php │ │ ├── table.php │ │ ├── user │ │ └── user.php │ │ └── validation.php ├── library │ └── Andrew13 │ │ └── Helpers │ │ └── Stringy.php ├── models │ ├── AssignedRoles.php │ ├── Comment.php │ ├── Permission.php │ ├── Post.php │ ├── Role.php │ ├── User.php │ └── UserRepository.php ├── presenters │ ├── CommentPresenter.php │ ├── PostPresenter.php │ └── UserPresenter.php ├── routes.php ├── start │ ├── artisan.php │ ├── global.php │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── debugbar │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── tests │ ├── blueprints │ │ ├── Comment.php │ │ ├── Permission.php │ │ ├── Post.php │ │ ├── Role.php │ │ └── User.php │ ├── controllers │ │ └── UserControllerTest.php │ ├── library │ │ ├── BaseControllerTestCase.php │ │ └── TestCase.php │ ├── models │ │ ├── CommentTest.php │ │ ├── PermissionTest.php │ │ ├── PostTest.php │ │ ├── RoleTest.php │ │ └── UserTest.php │ └── views │ │ └── site │ │ └── pages │ │ ├── BlogArticleTest.php │ │ └── BlogTest.php └── views │ ├── admin │ ├── blogs │ │ ├── create_edit.blade.php │ │ ├── delete.blade.php │ │ └── index.blade.php │ ├── comments │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── dashboard.blade.php │ ├── error │ │ ├── 403.blade.php │ │ ├── 404.blade.php │ │ ├── 500.blade.php │ │ └── default.blade.php │ ├── layouts │ │ ├── default.blade.php │ │ └── modal.blade.php │ ├── notifications.blade.php │ ├── roles │ │ ├── delete.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ └── users │ │ ├── create_edit.blade.php │ │ ├── delete.blade.php │ │ └── index.blade.php │ ├── emails │ └── auth │ │ └── reminder.blade.php │ ├── error │ ├── 403.blade.php │ ├── 404.blade.php │ └── 500.blade.php │ ├── notifications.blade.php │ └── site │ ├── blog │ ├── index.blade.php │ └── view_post.blade.php │ ├── contact-us.blade.php │ ├── layouts │ ├── default.blade.adminlte.php │ ├── default.blade.php │ └── login.blade.php │ └── user │ ├── create.blade.php │ ├── dashboard.blade.php │ ├── forgot.blade.php │ ├── index.blade.php │ ├── login.blade.php │ ├── profile.blade.php │ └── reset.blade.php ├── artisan ├── bootstrap ├── autoload.php ├── paths.php └── start.php ├── composer.json ├── composer.lock ├── phpunit.xml ├── public ├── .htaccess ├── adminlte │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── ajax │ │ └── dashboard-boxrefresh-demo.php │ ├── css │ │ ├── AdminLTE.css │ │ ├── bootstrap-slider │ │ │ └── slider.css │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ └── bootstrap3-wysihtml5.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.css │ │ │ └── bootstrap-colorpicker.min.css │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.css │ │ │ └── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ ├── daterangepicker │ │ │ └── daterangepicker-bs3.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ └── fullcalendar.print.css │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── ionicons.css │ │ ├── ionicons.min.css │ │ ├── ionslider │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jQueryUI │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_100_e6e7e8_40x100.png │ │ │ │ ├── ui-bg_flat_100_f56954_40x100.png │ │ │ │ ├── ui-bg_flat_55_f39c12_40x100.png │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_dadada_40x100.png │ │ │ │ ├── ui-bg_flat_75_e6e6e6_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ └── jquery-ui-1.10.3.custom.min.css │ │ ├── jvectormap │ │ │ └── jquery-jvectormap-1.2.2.css │ │ ├── morris │ │ │ └── morris.css │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ ├── empty.html │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ ├── img │ │ ├── ajax-loader.gif │ │ ├── ajax-loader1.gif │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── blur-background04.jpg │ │ ├── blur-background08.jpg │ │ ├── blur-background09.jpg │ │ ├── bootstrap-colorpicker │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── credit │ │ │ ├── american-express.png │ │ │ ├── cirrus.png │ │ │ ├── mastercard.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ └── visa.png │ │ ├── icons.png │ │ ├── sprite-skin-flat.png │ │ ├── sprite-skin-nice.png │ │ ├── user-bg.png │ │ ├── user.jpg │ │ └── user2.jpg │ ├── index.html │ ├── js │ │ ├── AdminLTE │ │ │ ├── app.js │ │ │ ├── dashboard.js │ │ │ └── demo.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-ui-1.10.3.js │ │ ├── jquery-ui-1.10.3.min.js │ │ ├── jquery.min.js │ │ └── plugins │ │ │ ├── bootstrap-slider │ │ │ └── bootstrap-slider.js │ │ │ ├── bootstrap-wysihtml5 │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ └── bootstrap3-wysihtml5.js │ │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── bootstrap-colorpicker.min.js │ │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.js │ │ │ └── jquery.dataTables.js │ │ │ ├── daterangepicker │ │ │ └── daterangepicker.js │ │ │ ├── flot │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.js │ │ │ └── jquery.flot.time.min.js │ │ │ ├── fullcalendar │ │ │ ├── fullcalendar.js │ │ │ └── fullcalendar.min.js │ │ │ ├── iCheck │ │ │ ├── icheck.js │ │ │ └── icheck.min.js │ │ │ ├── input-mask │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ ├── jquery.inputmask.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ │ ├── ionslider │ │ │ └── ion.rangeSlider.min.js │ │ │ ├── jqueryKnob │ │ │ └── jquery.knob.js │ │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ ├── misc │ │ │ ├── html5shiv.js │ │ │ ├── jquery.ba-resize.min.js │ │ │ ├── jquery.placeholder.js │ │ │ ├── modernizr.min.js │ │ │ └── respond.min.js │ │ │ ├── morris │ │ │ ├── morris.js │ │ │ └── morris.min.js │ │ │ ├── slimScroll │ │ │ ├── jquery.slimscroll.js │ │ │ ├── jquery.slimscroll.min.js │ │ │ └── slimScroll.jquery.json │ │ │ ├── sparkline │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ ├── less │ │ ├── 404_500_errors.less │ │ ├── AdminLTE.less │ │ ├── alerts.less │ │ ├── bootstrap-social.less │ │ ├── boxes.less │ │ ├── buttons.less │ │ ├── callout.less │ │ ├── core.less │ │ ├── dropdown.less │ │ ├── forms.less │ │ ├── header.less │ │ ├── iCheck.less │ │ ├── invoice.less │ │ ├── lockscreen.less │ │ ├── login_and_register.less │ │ ├── mailbox.less │ │ ├── mixins.less │ │ ├── navs.less │ │ ├── pace.less │ │ ├── progress-bars.less │ │ ├── sidebar.less │ │ ├── skins.less │ │ ├── small-box.less │ │ ├── timeline.less │ │ └── vars.less │ └── pages │ │ ├── UI │ │ ├── buttons.html │ │ ├── empty.html │ │ ├── general.html │ │ ├── icons.html │ │ ├── jquery-ui.html │ │ ├── sliders.html │ │ └── timeline.html │ │ ├── calendar.html │ │ ├── charts │ │ ├── empty.html │ │ ├── flot.html │ │ ├── inline.html │ │ └── morris.html │ │ ├── empty.html │ │ ├── examples │ │ ├── 404.html │ │ ├── 500.html │ │ ├── blank.html │ │ ├── invoice.html │ │ ├── lockscreen.html │ │ ├── login.html │ │ └── register.html │ │ ├── forms │ │ ├── advanced.html │ │ ├── editors.html │ │ ├── empty.html │ │ └── general.html │ │ ├── mailbox.html │ │ ├── tables │ │ ├── data.html │ │ ├── empty.html │ │ └── simple.html │ │ └── widgets.html ├── assets │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.css │ │ ├── colorbox.css │ │ ├── datatables-bootstrap.css │ │ ├── images │ │ │ ├── border.png │ │ │ ├── controls.png │ │ │ ├── loading.gif │ │ │ ├── loading_background.png │ │ │ └── overlay.png │ │ ├── less │ │ │ ├── master.less │ │ │ └── variables-custom.less │ │ └── wysihtml5 │ │ │ ├── bootstrap-wysihtml5.css │ │ │ └── prettify.css │ ├── fonts │ │ └── bootstrap │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ ├── 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 │ │ └── datatables │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ └── js │ │ ├── bootstrap │ │ └── bootstrap.js │ │ ├── datatables-bootstrap.js │ │ ├── datatables.fnReloadAjax.js │ │ ├── datatables.min.js │ │ ├── datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ │ ├── jquery.colorbox.js │ │ ├── prettify.js │ │ ├── select2 │ │ ├── select2-bootstrap.css │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_en.js.template │ │ └── select2x2.png │ │ └── wysihtml5 │ │ ├── bootstrap-wysihtml5.js │ │ └── wysihtml5-0.3.0.js ├── bootflat │ ├── css │ │ ├── bootflat.css │ │ ├── bootflat.css.map │ │ └── bootflat.min.css │ ├── img │ │ └── check_flat │ │ │ ├── default.png │ │ │ └── default.psd │ ├── js │ │ ├── icheck.min.js │ │ ├── jquery.fs.selecter.min.js │ │ └── jquery.fs.stepper.min.js │ └── scss │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── bootflat.scss │ │ └── bootflat │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _breadcrumb.scss │ │ ├── _button.scss │ │ ├── _button_group.scss │ │ ├── _calendar.scss │ │ ├── _checkbox_radio.scss │ │ ├── _dropdown.scss │ │ ├── _footer.scss │ │ ├── _form.scss │ │ ├── _global.scss │ │ ├── _jumbotron.scss │ │ ├── _label_badge.scss │ │ ├── _list.scss │ │ ├── _media_list.scss │ │ ├── _modal.scss │ │ ├── _navbar.scss │ │ ├── _pager.scss │ │ ├── _pagination.scss │ │ ├── _panel.scss │ │ ├── _pill.scss │ │ ├── _popover.scss │ │ ├── _pricing.scss │ │ ├── _progress.scss │ │ ├── _selecter.scss │ │ ├── _stepper.scss │ │ ├── _tab.scss │ │ ├── _thumbnail.scss │ │ ├── _toggle.scss │ │ ├── _tooltip.scss │ │ ├── _typography.scss │ │ └── _well.scss ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── affix.js │ │ ├── alert.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js ├── favicon.ico ├── index.php ├── packages │ ├── .gitkeep │ ├── barryvdh │ │ └── laravel-debugbar │ │ │ ├── laravel-debugbar.css │ │ │ └── laravel-icon.png │ └── maximebf │ │ └── php-debugbar │ │ ├── debugbar.css │ │ ├── debugbar.js │ │ ├── icons.png │ │ ├── openhandler.css │ │ ├── openhandler.js │ │ ├── php-icon.png │ │ ├── vendor │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ ├── highlightjs │ │ │ ├── highlight.pack.js │ │ │ └── styles │ │ │ │ └── github.css │ │ └── jquery │ │ │ └── dist │ │ │ └── jquery.min.js │ │ ├── widgets.css │ │ ├── widgets.js │ │ └── widgets │ │ ├── mails │ │ ├── widget.css │ │ └── widget.js │ │ ├── sqlqueries │ │ ├── widget.css │ │ └── widget.js │ │ └── templates │ │ ├── widget.css │ │ └── widget.js └── robots.txt ├── readme.md ├── server.php └── vagrant.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/app.php -------------------------------------------------------------------------------- /app/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/auth.php -------------------------------------------------------------------------------- /app/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/cache.php -------------------------------------------------------------------------------- /app/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/compile.php -------------------------------------------------------------------------------- /app/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/database.php -------------------------------------------------------------------------------- /app/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/mail.php -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/zizaco/confide/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/zizaco/confide/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/packages/zizaco/confide/config.php -------------------------------------------------------------------------------- /app/config/packages/zizaco/entrust/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/packages/zizaco/entrust/config.php -------------------------------------------------------------------------------- /app/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/queue.php -------------------------------------------------------------------------------- /app/config/remote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/remote.php -------------------------------------------------------------------------------- /app/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/session.php -------------------------------------------------------------------------------- /app/config/site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/site.php -------------------------------------------------------------------------------- /app/config/testing/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/testing/cache.php -------------------------------------------------------------------------------- /app/config/testing/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/testing/database.php -------------------------------------------------------------------------------- /app/config/testing/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/testing/session.php -------------------------------------------------------------------------------- /app/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/view.php -------------------------------------------------------------------------------- /app/config/workbench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/config/workbench.php -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/AdminController.php -------------------------------------------------------------------------------- /app/controllers/AuthorizedController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/AuthorizedController.php -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/BaseController.php -------------------------------------------------------------------------------- /app/controllers/BlogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/BlogController.php -------------------------------------------------------------------------------- /app/controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/UsersController.php -------------------------------------------------------------------------------- /app/controllers/admin/AdminBlogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/admin/AdminBlogsController.php -------------------------------------------------------------------------------- /app/controllers/admin/AdminCommentsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/admin/AdminCommentsController.php -------------------------------------------------------------------------------- /app/controllers/admin/AdminDashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/admin/AdminDashboardController.php -------------------------------------------------------------------------------- /app/controllers/admin/AdminRolesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/admin/AdminRolesController.php -------------------------------------------------------------------------------- /app/controllers/admin/AdminUsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/admin/AdminUsersController.php -------------------------------------------------------------------------------- /app/controllers/user/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/controllers/user/UserController.php -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/2013_02_05_024934_confide_setup_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/migrations/2013_02_05_024934_confide_setup_users_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_02_05_043505_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/migrations/2013_02_05_043505_create_posts_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_02_05_044505_create_comments_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/migrations/2013_02_05_044505_create_comments_table.php -------------------------------------------------------------------------------- /app/database/migrations/2013_02_08_031702_entrust_setup_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/migrations/2013_02_08_031702_entrust_setup_tables.php -------------------------------------------------------------------------------- /app/database/migrations/2013_05_21_024934_entrust_permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/migrations/2013_05_21_024934_entrust_permissions.php -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/CommentsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/seeds/CommentsTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/PermissionsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/seeds/PermissionsTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/PostsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/seeds/PostsTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/RolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/seeds/RolesTableSeeder.php -------------------------------------------------------------------------------- /app/database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /app/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/filters.php -------------------------------------------------------------------------------- /app/lang/en/admin/blogs/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/blogs/messages.php -------------------------------------------------------------------------------- /app/lang/en/admin/blogs/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/blogs/table.php -------------------------------------------------------------------------------- /app/lang/en/admin/blogs/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/blogs/title.php -------------------------------------------------------------------------------- /app/lang/en/admin/comments/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/comments/messages.php -------------------------------------------------------------------------------- /app/lang/en/admin/comments/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/comments/table.php -------------------------------------------------------------------------------- /app/lang/en/admin/comments/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/comments/title.php -------------------------------------------------------------------------------- /app/lang/en/admin/companies/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/companies/messages.php -------------------------------------------------------------------------------- /app/lang/en/admin/companies/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/companies/table.php -------------------------------------------------------------------------------- /app/lang/en/admin/companies/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/companies/title.php -------------------------------------------------------------------------------- /app/lang/en/admin/roles/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/roles/messages.php -------------------------------------------------------------------------------- /app/lang/en/admin/roles/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/roles/table.php -------------------------------------------------------------------------------- /app/lang/en/admin/roles/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/roles/title.php -------------------------------------------------------------------------------- /app/lang/en/admin/users/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/users/messages.php -------------------------------------------------------------------------------- /app/lang/en/admin/users/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/users/table.php -------------------------------------------------------------------------------- /app/lang/en/admin/users/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/admin/users/title.php -------------------------------------------------------------------------------- /app/lang/en/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/button.php -------------------------------------------------------------------------------- /app/lang/en/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/en/general.php -------------------------------------------------------------------------------- /app/lang/en/messages.php: -------------------------------------------------------------------------------- 1 | 'Ações' 6 | 7 | ); 8 | -------------------------------------------------------------------------------- /app/lang/pt/user/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/pt/user/user.php -------------------------------------------------------------------------------- /app/lang/pt/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/lang/pt/validation.php -------------------------------------------------------------------------------- /app/library/Andrew13/Helpers/Stringy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/library/Andrew13/Helpers/Stringy.php -------------------------------------------------------------------------------- /app/models/AssignedRoles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/models/AssignedRoles.php -------------------------------------------------------------------------------- /app/models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/models/Comment.php -------------------------------------------------------------------------------- /app/models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/models/Permission.php -------------------------------------------------------------------------------- /app/models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/models/Post.php -------------------------------------------------------------------------------- /app/models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/models/Role.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/models/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/models/UserRepository.php -------------------------------------------------------------------------------- /app/presenters/CommentPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/presenters/CommentPresenter.php -------------------------------------------------------------------------------- /app/presenters/PostPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/presenters/PostPresenter.php -------------------------------------------------------------------------------- /app/presenters/UserPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/presenters/UserPresenter.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/start/artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/start/artisan.php -------------------------------------------------------------------------------- /app/start/global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yajra/laravel-admin-template/HEAD/app/start/global.php -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 |