├── public ├── favicon.ico ├── robots.txt ├── mix-manifest.json ├── design │ ├── img │ │ ├── favicon.ico │ │ ├── blog │ │ │ ├── blog1.jpg │ │ │ ├── blog2.jpg │ │ │ ├── blog3.jpg │ │ │ ├── blog4.jpg │ │ │ ├── blog5.jpg │ │ │ ├── blog6.jpg │ │ │ ├── blog7.jpg │ │ │ ├── blog8.jpg │ │ │ ├── blog9.jpg │ │ │ ├── blog-img.jpg │ │ │ └── blog-detail.jpg │ │ ├── logo │ │ │ ├── logo.png │ │ │ ├── logo2.png │ │ │ └── footer-logo.png │ │ ├── map-marker.png │ │ ├── post │ │ │ ├── post1.jpg │ │ │ ├── post2.jpg │ │ │ └── post3.jpg │ │ ├── about │ │ │ └── about.png │ │ ├── event │ │ │ ├── event1.jpg │ │ │ ├── event2.jpg │ │ │ ├── event3.jpg │ │ │ ├── event4.jpg │ │ │ ├── event5.jpg │ │ │ ├── event6.jpg │ │ │ ├── event7.jpg │ │ │ ├── event8.jpg │ │ │ ├── event9.jpg │ │ │ ├── event10.jpg │ │ │ ├── event11.jpg │ │ │ ├── event12.jpg │ │ │ ├── event13.jpg │ │ │ ├── speaker1.jpg │ │ │ ├── speaker2.jpg │ │ │ └── event-details.jpg │ │ ├── icon │ │ │ ├── section.png │ │ │ └── section1.png │ │ ├── notice │ │ │ └── video.jpg │ │ ├── slider │ │ │ ├── home.png │ │ │ ├── slider1.jpg │ │ │ ├── slider2.jpg │ │ │ └── slider3.jpg │ │ ├── banner │ │ │ └── banner.jpg │ │ ├── choose │ │ │ ├── choose.png │ │ │ └── choose-bd.jpg │ │ ├── course │ │ │ ├── course1.jpg │ │ │ ├── course2.jpg │ │ │ ├── course3.jpg │ │ │ ├── course4.jpg │ │ │ ├── course5.jpg │ │ │ ├── course6.jpg │ │ │ ├── course7.jpg │ │ │ ├── course8.jpg │ │ │ ├── course9.jpg │ │ │ ├── course-bg.jpg │ │ │ └── courses-details.jpg │ │ ├── footer │ │ │ ├── footer1.jpg │ │ │ ├── footer2.jpg │ │ │ ├── footer3.jpg │ │ │ └── footer4.jpg │ │ ├── contact │ │ │ ├── contact1.png │ │ │ ├── contact2.png │ │ │ └── contact3.png │ │ ├── teacher │ │ │ ├── teacher1.jpg │ │ │ ├── teacher10.jpg │ │ │ ├── teacher11.jpg │ │ │ ├── teacher12.jpg │ │ │ ├── teacher2.jpg │ │ │ ├── teacher3.jpg │ │ │ ├── teacher4.jpg │ │ │ ├── teacher5.jpg │ │ │ ├── teacher6.jpg │ │ │ ├── teacher7.jpg │ │ │ ├── teacher8.jpg │ │ │ ├── teacher9.jpg │ │ │ └── teacher-details.jpg │ │ └── testimonial │ │ │ ├── testimonial.jpg │ │ │ └── testimonial-bg.jpg │ ├── fonts │ │ ├── et-line.eot │ │ ├── et-line.ttf │ │ ├── et-line.woff │ │ ├── ionicons.eot │ │ ├── ionicons.ttf │ │ ├── ionicons.woff │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── Material-Design-Iconic-Font.eot │ │ ├── Material-Design-Iconic-Font.ttf │ │ ├── Material-Design-Iconic-Font.woff │ │ └── Material-Design-Iconic-Font.woff2 │ ├── css │ │ ├── reset.css │ │ ├── owl.carousel.min.css │ │ ├── meanmenu.css │ │ └── magnific-popup.css │ └── js │ │ ├── ajax-mail.js │ │ └── main.js ├── .htaccess ├── index.php └── svg │ ├── 404.svg │ ├── 503.svg │ └── 403.svg ├── README.md ├── database ├── .gitignore ├── seeds │ └── DatabaseSeeder.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2018_12_14_083221_create_series_table.php │ └── 2014_10_12_000000_create_users_table.php └── factories │ └── ModelFactory.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── resources ├── views │ ├── layouts │ │ ├── admin.blade.php │ │ ├── app.blade.php │ │ └── partials │ │ │ ├── header.blade.php │ │ │ ├── nav.blade.php │ │ │ └── footer.blade.php │ ├── home.blade.php │ ├── auth │ │ ├── verify.blade.php │ │ ├── login.blade.php │ │ ├── register.blade.php │ │ └── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ └── admin │ │ └── series │ │ └── index.blade.php ├── sass │ ├── app.scss │ └── _variables.scss ├── lang │ └── en │ │ ├── pagination.php │ │ ├── auth.php │ │ ├── passwords.php │ │ └── validation.php └── js │ ├── app.js │ ├── bootstrap.js │ └── components │ ├── Login.vue │ └── Register.vue ├── .gitattributes ├── app ├── Series.php ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── Authenticate.php │ │ ├── VerifyCsrfToken.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── ResetPasswordController.php │ │ │ ├── VerificationController.php │ │ │ ├── LoginController.php │ │ │ └── RegisterController.php │ │ └── SeriesController.php │ └── Kernel.php ├── Exceptions │ ├── AuthFailedException.php │ └── Handler.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── User.php └── Console │ └── Kernel.php ├── .idea ├── misc.xml ├── vcs.xml ├── modules.xml ├── php.xml └── edume.iml ├── .gitignore ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ ├── ExampleTest.php │ ├── LoginTest.php │ └── RegistrationTest.php └── CreatesApplication.php ├── .editorconfig ├── routes ├── channels.php ├── api.php ├── console.php └── web.php ├── webpack.mix.js ├── server.php ├── .env.example ├── package.json ├── config ├── view.php ├── services.php ├── hashing.php ├── broadcasting.php ├── filesystems.php ├── logging.php ├── queue.php ├── cache.php ├── auth.php ├── database.php ├── mail.php └── session.php ├── phpunit.xml ├── composer.json └── artisan /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | "# edume" 2 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /public/design/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/favicon.ico -------------------------------------------------------------------------------- /public/design/fonts/et-line.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/et-line.eot -------------------------------------------------------------------------------- /public/design/fonts/et-line.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/et-line.ttf -------------------------------------------------------------------------------- /public/design/fonts/et-line.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/et-line.woff -------------------------------------------------------------------------------- /public/design/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/ionicons.eot -------------------------------------------------------------------------------- /public/design/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/ionicons.ttf -------------------------------------------------------------------------------- /public/design/img/blog/blog1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog1.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog2.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog3.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog4.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog5.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog6.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog7.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog8.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog9.jpg -------------------------------------------------------------------------------- /public/design/img/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/logo/logo.png -------------------------------------------------------------------------------- /public/design/img/logo/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/logo/logo2.png -------------------------------------------------------------------------------- /public/design/img/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/map-marker.png -------------------------------------------------------------------------------- /public/design/img/post/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/post/post1.jpg -------------------------------------------------------------------------------- /public/design/img/post/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/post/post2.jpg -------------------------------------------------------------------------------- /public/design/img/post/post3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/post/post3.jpg -------------------------------------------------------------------------------- /public/design/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/ionicons.woff -------------------------------------------------------------------------------- /public/design/img/about/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/about/about.png -------------------------------------------------------------------------------- /public/design/img/event/event1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event1.jpg -------------------------------------------------------------------------------- /public/design/img/event/event2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event2.jpg -------------------------------------------------------------------------------- /public/design/img/event/event3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event3.jpg -------------------------------------------------------------------------------- /public/design/img/event/event4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event4.jpg -------------------------------------------------------------------------------- /public/design/img/event/event5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event5.jpg -------------------------------------------------------------------------------- /public/design/img/event/event6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event6.jpg -------------------------------------------------------------------------------- /public/design/img/event/event7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event7.jpg -------------------------------------------------------------------------------- /public/design/img/event/event8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event8.jpg -------------------------------------------------------------------------------- /public/design/img/event/event9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event9.jpg -------------------------------------------------------------------------------- /public/design/img/icon/section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/icon/section.png -------------------------------------------------------------------------------- /public/design/img/notice/video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/notice/video.jpg -------------------------------------------------------------------------------- /public/design/img/slider/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/slider/home.png -------------------------------------------------------------------------------- /public/design/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/design/img/banner/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/banner/banner.jpg -------------------------------------------------------------------------------- /public/design/img/blog/blog-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog-img.jpg -------------------------------------------------------------------------------- /public/design/img/choose/choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/choose/choose.png -------------------------------------------------------------------------------- /public/design/img/course/course1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course1.jpg -------------------------------------------------------------------------------- /public/design/img/course/course2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course2.jpg -------------------------------------------------------------------------------- /public/design/img/course/course3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course3.jpg -------------------------------------------------------------------------------- /public/design/img/course/course4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course4.jpg -------------------------------------------------------------------------------- /public/design/img/course/course5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course5.jpg -------------------------------------------------------------------------------- /public/design/img/course/course6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course6.jpg -------------------------------------------------------------------------------- /public/design/img/course/course7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course7.jpg -------------------------------------------------------------------------------- /public/design/img/course/course8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course8.jpg -------------------------------------------------------------------------------- /public/design/img/course/course9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course9.jpg -------------------------------------------------------------------------------- /public/design/img/event/event10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event10.jpg -------------------------------------------------------------------------------- /public/design/img/event/event11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event11.jpg -------------------------------------------------------------------------------- /public/design/img/event/event12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event12.jpg -------------------------------------------------------------------------------- /public/design/img/event/event13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event13.jpg -------------------------------------------------------------------------------- /public/design/img/event/speaker1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/speaker1.jpg -------------------------------------------------------------------------------- /public/design/img/event/speaker2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/speaker2.jpg -------------------------------------------------------------------------------- /public/design/img/footer/footer1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/footer/footer1.jpg -------------------------------------------------------------------------------- /public/design/img/footer/footer2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/footer/footer2.jpg -------------------------------------------------------------------------------- /public/design/img/footer/footer3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/footer/footer3.jpg -------------------------------------------------------------------------------- /public/design/img/footer/footer4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/footer/footer4.jpg -------------------------------------------------------------------------------- /public/design/img/icon/section1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/icon/section1.png -------------------------------------------------------------------------------- /public/design/img/slider/slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/slider/slider1.jpg -------------------------------------------------------------------------------- /public/design/img/slider/slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/slider/slider2.jpg -------------------------------------------------------------------------------- /public/design/img/slider/slider3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/slider/slider3.jpg -------------------------------------------------------------------------------- /resources/views/layouts/admin.blade.php: -------------------------------------------------------------------------------- 1 | @include('layouts.partials.header') 2 | @include('layouts.partials.nav') 3 | @yield('content') -------------------------------------------------------------------------------- /public/design/img/blog/blog-detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/blog/blog-detail.jpg -------------------------------------------------------------------------------- /public/design/img/choose/choose-bd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/choose/choose-bd.jpg -------------------------------------------------------------------------------- /public/design/img/contact/contact1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/contact/contact1.png -------------------------------------------------------------------------------- /public/design/img/contact/contact2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/contact/contact2.png -------------------------------------------------------------------------------- /public/design/img/contact/contact3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/contact/contact3.png -------------------------------------------------------------------------------- /public/design/img/course/course-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/course-bg.jpg -------------------------------------------------------------------------------- /public/design/img/logo/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/logo/footer-logo.png -------------------------------------------------------------------------------- /public/design/img/teacher/teacher1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher1.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher10.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher11.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher12.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher2.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher3.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher4.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher5.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher6.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher7.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher8.jpg -------------------------------------------------------------------------------- /public/design/img/teacher/teacher9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher9.jpg -------------------------------------------------------------------------------- /public/design/img/event/event-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/event/event-details.jpg -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /public/design/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/design/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/design/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/design/img/course/courses-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/course/courses-details.jpg -------------------------------------------------------------------------------- /public/design/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/design/img/teacher/teacher-details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/teacher/teacher-details.jpg -------------------------------------------------------------------------------- /public/design/img/testimonial/testimonial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/testimonial/testimonial.jpg -------------------------------------------------------------------------------- /public/design/img/testimonial/testimonial-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/img/testimonial/testimonial-bg.jpg -------------------------------------------------------------------------------- /public/design/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /public/design/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /public/design/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdurrahman144211/edume/HEAD/public/design/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /app/Series.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- 1 | @include('layouts.partials.header') 2 | @include('layouts.partials.nav') 3 |
4 | @yield('content') 5 |
6 | @include('layouts.partials.footer') -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .phpunit.result.cache 8 | Homestead.json 9 | Homestead.yaml 10 | npm-debug.log 11 | yarn-error.log 12 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | 2 | // Fonts 3 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 4 | 5 | // Variables 6 | @import 'variables'; 7 | 8 | // Bootstrap 9 | @import '~bootstrap/scss/bootstrap'; 10 | 11 | .navbar-laravel { 12 | background-color: #fff; 13 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); 14 | } 15 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Exceptions/AuthFailedException.php: -------------------------------------------------------------------------------- 1 | 'The given data was invalid', 12 | 'errors' => [ 13 | 'email' => [__('auth.failed')] 14 | ] 15 | ], 422); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | 2 | // Body 3 | $body-bg: #f8fafc; 4 | 5 | // Typography 6 | $font-family-sans-serif: "Nunito", sans-serif; 7 | $font-size-base: 0.9rem; 8 | $line-height-base: 1.6; 9 | 10 | // Colors 11 | $blue: #3490dc; 12 | $indigo: #6574cd; 13 | $purple: #9561e2; 14 | $pink: #f66D9b; 15 | $red: #e3342f; 16 | $orange: #f6993f; 17 | $yellow: #ffed4a; 18 | $green: #38c172; 19 | $teal: #4dc0b5; 20 | $cyan: #6cb2eb; 21 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 16 | }); 17 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 17 | } 18 | 19 | /** 20 | * Show the application dashboard. 21 | * 22 | * @return \Illuminate\Http\Response 23 | */ 24 | public function index() 25 | { 26 | return view('home'); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/home'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Handle Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
Dashboard
9 | 10 |
11 | @if (session('status')) 12 | 15 | @endif 16 | 17 | You are logged in! 18 |
19 |
20 |
21 |
22 |
23 | @endsection 24 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | 'admin'], function(){ 19 | Route::resource('/series', 'SeriesController'); 20 | }); 21 | 22 | Auth::routes(); 23 | 24 | Route::get('/home', 'HomeController@index')->name('home'); 25 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_URL=http://localhost 6 | 7 | LOG_CHANNEL=stack 8 | 9 | DB_CONNECTION=mysql 10 | DB_HOST=127.0.0.1 11 | DB_PORT=3306 12 | DB_DATABASE=homestead 13 | DB_USERNAME=homestead 14 | DB_PASSWORD=secret 15 | 16 | BROADCAST_DRIVER=log 17 | CACHE_DRIVER=file 18 | QUEUE_CONNECTION=sync 19 | SESSION_DRIVER=file 20 | SESSION_LIFETIME=120 21 | 22 | REDIS_HOST=127.0.0.1 23 | REDIS_PASSWORD=null 24 | REDIS_PORT=6379 25 | 26 | MAIL_DRIVER=smtp 27 | MAIL_HOST=smtp.mailtrap.io 28 | MAIL_PORT=2525 29 | MAIL_USERNAME=null 30 | MAIL_PASSWORD=null 31 | MAIL_ENCRYPTION=null 32 | 33 | PUSHER_APP_ID= 34 | PUSHER_APP_KEY= 35 | PUSHER_APP_SECRET= 36 | PUSHER_APP_CLUSTER=mt1 37 | 38 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 39 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 40 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- 1 | string('email')->index(); 18 | $table->string('token'); 19 | $table->timestamp('created_at')->nullable(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('password_resets'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 19 | SendEmailVerificationNotification::class, 20 | ], 21 | ]; 22 | 23 | /** 24 | * Register any events for your application. 25 | * 26 | * @return void 27 | */ 28 | public function boot() 29 | { 30 | parent::boot(); 31 | 32 | // 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Passwords must be at least six characters and match the confirmation.', 17 | 'reset' => 'Your password has been reset!', 18 | 'sent' => 'We have e-mailed your password reset link!', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that e-mail address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /database/migrations/2018_12_14_083221_create_series_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->string('title'); 19 | $table->string('slug'); 20 | $table->text('description'); 21 | $table->string('image')->nullable(); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('series'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /tests/Feature/LoginTest.php: -------------------------------------------------------------------------------- 1 | create(); 16 | 17 | $this->postJson(route('login'), [ 18 | 'email' => $user->email, 19 | 'password' => 'secret' 20 | ])->assertStatus(204); 21 | } 22 | 23 | /** @test */ 24 | function un_authenticated_user_recive_error_message_trying_login_with_invalid_data() 25 | { 26 | $this->postJson(route('login'), [ 27 | 'email' => 'invalid@test.com', 28 | 'password' => 'invalid' 29 | ]) 30 | ->assertStatus(422) 31 | ->assertJson(['message' => 'The given data was invalid']); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->string('name'); 19 | $table->string('email')->unique(); 20 | $table->timestamp('email_verified_at')->nullable(); 21 | $table->string('password'); 22 | $table->rememberToken(); 23 | $table->timestamps(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('users'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire') 28 | // ->hourly(); 29 | } 30 | 31 | /** 32 | * Register the commands for the application. 33 | * 34 | * @return void 35 | */ 36 | protected function commands() 37 | { 38 | $this->load(__DIR__.'/Commands'); 39 | 40 | require base_path('routes/console.php'); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
{{ __('Verify Your Email Address') }}
9 | 10 |
11 | @if (session('resent')) 12 | 15 | @endif 16 | 17 | {{ __('Before proceeding, please check your email for a verification link.') }} 18 | {{ __('If you did not receive the email') }}, {{ __('click here to request another') }}. 19 |
20 |
21 |
22 |
23 |
24 | @endsection 25 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 6 | "watch": "npm run development -- --watch", 7 | "watch-poll": "npm run watch -- --watch-poll", 8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 9 | "prod": "npm run production", 10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 11 | }, 12 | "devDependencies": { 13 | "axios": "^0.18.0", 14 | "bootstrap": "^4.0.0", 15 | "cross-env": "^5.1", 16 | "jquery": "^3.2", 17 | "laravel-mix": "^2.0", 18 | "lodash": "^4.17.5", 19 | "popper.js": "^1.12", 20 | "vue": "^2.5.17" 21 | }, 22 | "dependencies": { 23 | "vform": "^1.0.0" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /tests/Feature/RegistrationTest.php: -------------------------------------------------------------------------------- 1 | postJson(route('register'), [ 16 | 'name' => 'johndoe', 17 | 'email' => 'test@test.com', 18 | 'password' => 'secret', 19 | 'password_confirmation' => 'secret' 20 | ])->assertStatus(204); 21 | 22 | $this->assertDatabaseHas('users', ['email' => 'test@test.com']); 23 | } 24 | 25 | function un_authenticated_user_must_receive_error_message_when_trying_register_with_invalid_data() 26 | { 27 | $this->postJson(route('register'), [ 28 | 'name' => 'johndoe', 29 | 'email' => 'test@test.com', 30 | 'password' => 'secret', 31 | 'password_confirmation' => '' 32 | ])->assertStatus(422); 33 | 34 | $this->assertDatabaseMissing('users', ['email' => 'test@test.com']); 35 | 36 | 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => env( 32 | 'VIEW_COMPILED_PATH', 33 | realpath(storage_path('framework/views')) 34 | ), 35 | 36 | ]; 37 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- 1 | define(App\User::class, function (Faker $faker) { 17 | return [ 18 | 'name' => $faker->name, 19 | 'email' => $faker->unique()->safeEmail, 20 | 'email_verified_at' => now(), 21 | 'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret 22 | 'remember_token' => str_random(10), 23 | ]; 24 | }); 25 | 26 | 27 | $factory->define(App\Series::class, function (Faker $faker) { 28 | $sentence = $faker->sentence(1); 29 | 30 | return [ 31 | 'title' => $sentence, 32 | 'slug' => str_slug($sentence), 33 | 'image' => $faker->imageUrl(), 34 | 'description' => $faker->paragraph(7) 35 | ]; 36 | }); 37 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 38 | $this->middleware('signed')->only('verify'); 39 | $this->middleware('throttle:6,1')->only('verify', 'resend'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./tests/Unit 14 | 15 | 16 | 17 | ./tests/Feature 18 | 19 | 20 | 21 | 22 | ./app 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 21 | ], 22 | 23 | 'ses' => [ 24 | 'key' => env('SES_KEY'), 25 | 'secret' => env('SES_SECRET'), 26 | 'region' => env('SES_REGION', 'us-east-1'), 27 | ], 28 | 29 | 'sparkpost' => [ 30 | 'secret' => env('SPARKPOST_SECRET'), 31 | ], 32 | 33 | 'stripe' => [ 34 | 'model' => App\User::class, 35 | 'key' => env('STRIPE_KEY'), 36 | 'secret' => env('STRIPE_SECRET'), 37 | 'webhook' => [ 38 | 'secret' => env('STRIPE_WEBHOOK_SECRET'), 39 | 'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300), 40 | ], 41 | ], 42 | 43 | ]; 44 | -------------------------------------------------------------------------------- /public/design/js/ajax-mail.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | // Get the form. 4 | var form = $('#contact-form'); 5 | 6 | // Get the messages div. 7 | var formMessages = $('.form-messege'); 8 | 9 | // Set up an event listener for the contact form. 10 | $(form).submit(function(e) { 11 | // Stop the browser from submitting the form. 12 | e.preventDefault(); 13 | 14 | // Serialize the form data. 15 | var formData = $(form).serialize(); 16 | 17 | // Submit the form using AJAX. 18 | $.ajax({ 19 | type: 'POST', 20 | url: $(form).attr('action'), 21 | data: formData 22 | }) 23 | .done(function(response) { 24 | // Make sure that the formMessages div has the 'success' class. 25 | $(formMessages).removeClass('error'); 26 | $(formMessages).addClass('success'); 27 | 28 | // Set the message text. 29 | $(formMessages).text(response); 30 | 31 | // Clear the form. 32 | $('#contact-form input,#contact-form textarea').val(''); 33 | }) 34 | .fail(function(data) { 35 | // Make sure that the formMessages div has the 'error' class. 36 | $(formMessages).removeClass('success'); 37 | $(formMessages).addClass('error'); 38 | 39 | // Set the message text. 40 | if (data.responseText !== '') { 41 | $(formMessages).text(data.responseText); 42 | } else { 43 | $(formMessages).text('Oops! An error occured and your message could not be sent.'); 44 | } 45 | }); 46 | }); 47 | 48 | }); 49 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * First we will load all of this project's JavaScript dependencies which 4 | * includes Vue and other libraries. It is a great starting point when 5 | * building robust, powerful web applications using Vue and Laravel. 6 | */ 7 | 8 | require('./bootstrap'); 9 | 10 | window.Vue = require('vue'); 11 | import { Form, HasError, AlertError } from 'vform' 12 | 13 | Vue.component(HasError.name, HasError) 14 | Vue.component(AlertError.name, AlertError) 15 | 16 | window.Form = Form; 17 | 18 | /** 19 | * The following block of code may be used to automatically register your 20 | * Vue components. It will recursively scan this directory for the Vue 21 | * components and automatically register them with their "basename". 22 | * 23 | * Eg. ./components/ExampleComponent.vue -> 24 | */ 25 | 26 | // const files = require.context('./', true, /\.vue$/i) 27 | // files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key))) 28 | 29 | Vue.component('login', require('./components/Login.vue')); 30 | Vue.component('register', require('./components/Register.vue')); 31 | 32 | /** 33 | * Next, we will create a fresh Vue application instance and attach it to 34 | * the page. Then, you may begin adding components to this application 35 | * or customize the JavaScript scaffolding to fit your unique needs. 36 | */ 37 | 38 | const app = new Vue({ 39 | el: '#app' 40 | }); 41 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- 1 | middleware('guest')->except('logout'); 40 | } 41 | 42 | protected function authenticated(Request $request, $user) 43 | { 44 | return response(['message' => 'signed in '], 204); 45 | } 46 | 47 | protected function sendFailedLoginResponse(Request $request) 48 | { 49 | throw new AuthFailedException; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 | 5 | 20 | 21 | 22 |
23 |
24 |
25 |
26 | 35 |
36 |
37 |
38 |
39 | 40 | @endsection 41 | -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section('content') 3 | 4 | 19 | 20 | 21 |
22 |
23 |
24 |
25 | 36 |
37 |
38 |
39 |
40 | 41 | @endsection -------------------------------------------------------------------------------- /resources/views/layouts/partials/header.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Eduhome - Educational HTML Template 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- 1 | 'bcrypt', 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Bcrypt Options 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may specify the configuration options that should be used when 26 | | passwords are hashed using the Bcrypt algorithm. This will allow you 27 | | to control the amount of time it takes to hash the given password. 28 | | 29 | */ 30 | 31 | 'bcrypt' => [ 32 | 'rounds' => env('BCRYPT_ROUNDS', 10), 33 | ], 34 | 35 | /* 36 | |-------------------------------------------------------------------------- 37 | | Argon Options 38 | |-------------------------------------------------------------------------- 39 | | 40 | | Here you may specify the configuration options that should be used when 41 | | passwords are hashed using the Argon algorithm. These will allow you 42 | | to control the amount of time it takes to hash the given password. 43 | | 44 | */ 45 | 46 | 'argon' => [ 47 | 'memory' => 1024, 48 | 'threads' => 2, 49 | 'time' => 2, 50 | ], 51 | 52 | ]; 53 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "laravel/laravel", 3 | "type": "project", 4 | "description": "The Laravel Framework.", 5 | "keywords": [ 6 | "framework", 7 | "laravel" 8 | ], 9 | "license": "MIT", 10 | "require": { 11 | "php": "^7.1.3", 12 | "fideloper/proxy": "^4.0", 13 | "laravel/framework": "5.7.*", 14 | "laravel/tinker": "^1.0" 15 | }, 16 | "require-dev": { 17 | "beyondcode/laravel-dump-server": "^1.0", 18 | "filp/whoops": "^2.0", 19 | "fzaninotto/faker": "^1.4", 20 | "mockery/mockery": "^1.0", 21 | "nunomaduro/collision": "^2.0", 22 | "phpunit/phpunit": "^7.0" 23 | }, 24 | "config": { 25 | "optimize-autoloader": true, 26 | "preferred-install": "dist", 27 | "sort-packages": true 28 | }, 29 | "extra": { 30 | "laravel": { 31 | "dont-discover": [] 32 | } 33 | }, 34 | "autoload": { 35 | "psr-4": { 36 | "App\\": "app/" 37 | }, 38 | "classmap": [ 39 | "database/seeds", 40 | "database/factories" 41 | ] 42 | }, 43 | "autoload-dev": { 44 | "psr-4": { 45 | "Tests\\": "tests/" 46 | } 47 | }, 48 | "minimum-stability": "dev", 49 | "prefer-stable": true, 50 | "scripts": { 51 | "post-autoload-dump": [ 52 | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", 53 | "@php artisan package:discover --ansi" 54 | ], 55 | "post-root-package-install": [ 56 | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" 57 | ], 58 | "post-create-project-cmd": [ 59 | "@php artisan key:generate --ansi" 60 | ] 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- 1 | singleton( 30 | Illuminate\Contracts\Http\Kernel::class, 31 | App\Http\Kernel::class 32 | ); 33 | 34 | $app->singleton( 35 | Illuminate\Contracts\Console\Kernel::class, 36 | App\Console\Kernel::class 37 | ); 38 | 39 | $app->singleton( 40 | Illuminate\Contracts\Debug\ExceptionHandler::class, 41 | App\Exceptions\Handler::class 42 | ); 43 | 44 | /* 45 | |-------------------------------------------------------------------------- 46 | | Return The Application 47 | |-------------------------------------------------------------------------- 48 | | 49 | | This script returns the application instance. The instance is given to 50 | | the calling script so we can separate the building of the instances 51 | | from the actual running of the application and sending responses. 52 | | 53 | */ 54 | 55 | return $app; 56 | -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- 1 | env('BROADCAST_DRIVER', 'null'), 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Broadcast Connections 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may define all of the broadcast connections that will be used 26 | | to broadcast events to other systems or over websockets. Samples of 27 | | each available type of connection are provided inside this array. 28 | | 29 | */ 30 | 31 | 'connections' => [ 32 | 33 | 'pusher' => [ 34 | 'driver' => 'pusher', 35 | 'key' => env('PUSHER_APP_KEY'), 36 | 'secret' => env('PUSHER_APP_SECRET'), 37 | 'app_id' => env('PUSHER_APP_ID'), 38 | 'options' => [ 39 | 'cluster' => env('PUSHER_APP_CLUSTER'), 40 | 'encrypted' => true, 41 | ], 42 | ], 43 | 44 | 'redis' => [ 45 | 'driver' => 'redis', 46 | 'connection' => 'default', 47 | ], 48 | 49 | 'log' => [ 50 | 'driver' => 'log', 51 | ], 52 | 53 | 'null' => [ 54 | 'driver' => 'null', 55 | ], 56 | 57 | ], 58 | 59 | ]; 60 | -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- 1 | mapApiRoutes(); 39 | 40 | $this->mapWebRoutes(); 41 | 42 | // 43 | } 44 | 45 | /** 46 | * Define the "web" routes for the application. 47 | * 48 | * These routes all receive session state, CSRF protection, etc. 49 | * 50 | * @return void 51 | */ 52 | protected function mapWebRoutes() 53 | { 54 | Route::middleware('web') 55 | ->namespace($this->namespace) 56 | ->group(base_path('routes/web.php')); 57 | } 58 | 59 | /** 60 | * Define the "api" routes for the application. 61 | * 62 | * These routes are typically stateless. 63 | * 64 | * @return void 65 | */ 66 | protected function mapApiRoutes() 67 | { 68 | Route::prefix('api') 69 | ->middleware('api') 70 | ->namespace($this->namespace) 71 | ->group(base_path('routes/api.php')); 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | make(Illuminate\Contracts\Console\Kernel::class); 34 | 35 | $status = $kernel->handle( 36 | $input = new Symfony\Component\Console\Input\ArgvInput, 37 | new Symfony\Component\Console\Output\ConsoleOutput 38 | ); 39 | 40 | /* 41 | |-------------------------------------------------------------------------- 42 | | Shutdown The Application 43 | |-------------------------------------------------------------------------- 44 | | 45 | | Once Artisan has finished running, we will fire off the shutdown events 46 | | so that any final work may be done by the application before we shut 47 | | down the process. This is the last thing to happen to the request. 48 | | 49 | */ 50 | 51 | $kernel->terminate($input, $status); 52 | 53 | exit($status); 54 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | 2 | window._ = require('lodash'); 3 | 4 | /** 5 | * We'll load jQuery and the Bootstrap jQuery plugin which provides support 6 | * for JavaScript based Bootstrap features such as modals and tabs. This 7 | * code may be modified to fit the specific needs of your application. 8 | */ 9 | 10 | try { 11 | window.Popper = require('popper.js').default; 12 | window.$ = window.jQuery = require('jquery'); 13 | 14 | require('bootstrap'); 15 | } catch (e) {} 16 | 17 | /** 18 | * We'll load the axios HTTP library which allows us to easily issue requests 19 | * to our Laravel back-end. This library automatically handles sending the 20 | * CSRF token as a header based on the value of the "XSRF" token cookie. 21 | */ 22 | 23 | window.axios = require('axios'); 24 | 25 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 26 | 27 | /** 28 | * Next we will register the CSRF Token as a common header with Axios so that 29 | * all outgoing HTTP requests automatically have it attached. This is just 30 | * a simple convenience so we don't have to attach every token manually. 31 | */ 32 | 33 | let token = document.head.querySelector('meta[name="csrf-token"]'); 34 | 35 | if (token) { 36 | window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content; 37 | } else { 38 | console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token'); 39 | } 40 | 41 | /** 42 | * Echo exposes an expressive API for subscribing to channels and listening 43 | * for events that are broadcast by Laravel. Echo and event broadcasting 44 | * allows your team to easily build robust real-time web applications. 45 | */ 46 | 47 | // import Echo from 'laravel-echo' 48 | 49 | // window.Pusher = require('pusher-js'); 50 | 51 | // window.Echo = new Echo({ 52 | // broadcaster: 'pusher', 53 | // key: process.env.MIX_PUSHER_APP_KEY, 54 | // cluster: process.env.MIX_PUSHER_APP_CLUSTER, 55 | // encrypted: true 56 | // }); 57 | -------------------------------------------------------------------------------- /app/Http/Controllers/SeriesController.php: -------------------------------------------------------------------------------- 1 | paginate(); 18 | return view('admin.series.index', compact('series')); 19 | } 20 | 21 | /** 22 | * Show the form for creating a new resource. 23 | * 24 | * @return \Illuminate\Http\Response 25 | */ 26 | public function create() 27 | { 28 | // 29 | } 30 | 31 | /** 32 | * Store a newly created resource in storage. 33 | * 34 | * @param \Illuminate\Http\Request $request 35 | * @return \Illuminate\Http\Response 36 | */ 37 | public function store(Request $request) 38 | { 39 | // 40 | } 41 | 42 | /** 43 | * Display the specified resource. 44 | * 45 | * @param int $id 46 | * @return \Illuminate\Http\Response 47 | */ 48 | public function show($id) 49 | { 50 | // 51 | } 52 | 53 | /** 54 | * Show the form for editing the specified resource. 55 | * 56 | * @param int $id 57 | * @return \Illuminate\Http\Response 58 | */ 59 | public function edit($id) 60 | { 61 | // 62 | } 63 | 64 | /** 65 | * Update the specified resource in storage. 66 | * 67 | * @param \Illuminate\Http\Request $request 68 | * @param int $id 69 | * @return \Illuminate\Http\Response 70 | */ 71 | public function update(Request $request, $id) 72 | { 73 | // 74 | } 75 | 76 | /** 77 | * Remove the specified resource from storage. 78 | * 79 | * @param int $id 80 | * @return \Illuminate\Http\Response 81 | */ 82 | public function destroy($id) 83 | { 84 | // 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | define('LARAVEL_START', microtime(true)); 11 | 12 | /* 13 | |-------------------------------------------------------------------------- 14 | | Register The Auto Loader 15 | |-------------------------------------------------------------------------- 16 | | 17 | | Composer provides a convenient, automatically generated class loader for 18 | | our application. We just need to utilize it! We'll simply require it 19 | | into the script here so that we don't have to worry about manual 20 | | loading any of our classes later on. It feels great to relax. 21 | | 22 | */ 23 | 24 | require __DIR__.'/../vendor/autoload.php'; 25 | 26 | /* 27 | |-------------------------------------------------------------------------- 28 | | Turn On The Lights 29 | |-------------------------------------------------------------------------- 30 | | 31 | | We need to illuminate PHP development, so let us turn on the lights. 32 | | This bootstraps the framework and gets it ready for use, then it 33 | | will load up this application so that we can run it and send 34 | | the responses back to the browser and delight our users. 35 | | 36 | */ 37 | 38 | $app = require_once __DIR__.'/../bootstrap/app.php'; 39 | 40 | /* 41 | |-------------------------------------------------------------------------- 42 | | Run The Application 43 | |-------------------------------------------------------------------------- 44 | | 45 | | Once we have the application, we can handle the incoming request 46 | | through the kernel, and send the associated response back to 47 | | the client's browser allowing them to enjoy the creative 48 | | and wonderful application we have prepared for them. 49 | | 50 | */ 51 | 52 | $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); 53 | 54 | $response = $kernel->handle( 55 | $request = Illuminate\Http\Request::capture() 56 | ); 57 | 58 | $response->send(); 59 | 60 | $kernel->terminate($request, $response); 61 | -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
{{ __('Reset Password') }}
9 | 10 |
11 | @if (session('status')) 12 | 15 | @endif 16 | 17 |
18 | @csrf 19 | 20 |
21 | 22 | 23 |
24 | 25 | 26 | @if ($errors->has('email')) 27 | 28 | {{ $errors->first('email') }} 29 | 30 | @endif 31 |
32 |
33 | 34 |
35 |
36 | 39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 | @endsection 48 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- 1 | middleware('guest'); 42 | } 43 | 44 | /** 45 | * Get a validator for an incoming registration request. 46 | * 47 | * @param array $data 48 | * @return \Illuminate\Contracts\Validation\Validator 49 | */ 50 | protected function validator(array $data) 51 | { 52 | return Validator::make($data, [ 53 | 'name' => ['required', 'string', 'max:255'], 54 | 'email' => ['required', 'string', 'email', 'max:255', 'unique:users'], 55 | 'password' => ['required', 'string', 'min:6', 'confirmed'], 56 | ]); 57 | } 58 | 59 | protected function registered(Request $request, $user) 60 | { 61 | return response([], 204); 62 | } 63 | /** 64 | * Create a new user instance after a valid registration. 65 | * 66 | * @param array $data 67 | * @return \App\User 68 | */ 69 | protected function create(array $data) 70 | { 71 | return User::create([ 72 | 'name' => $data['name'], 73 | 'email' => $data['email'], 74 | 'password' => Hash::make($data['password']), 75 | ]); 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- 1 | env('FILESYSTEM_DRIVER', 'local'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Default Cloud Filesystem Disk 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Many applications store files both locally and in the cloud. For this 24 | | reason, you may specify a default "cloud" driver here. This driver 25 | | will be bound as the Cloud disk implementation in the container. 26 | | 27 | */ 28 | 29 | 'cloud' => env('FILESYSTEM_CLOUD', 's3'), 30 | 31 | /* 32 | |-------------------------------------------------------------------------- 33 | | Filesystem Disks 34 | |-------------------------------------------------------------------------- 35 | | 36 | | Here you may configure as many filesystem "disks" as you wish, and you 37 | | may even configure multiple disks of the same driver. Defaults have 38 | | been setup for each driver as an example of the required options. 39 | | 40 | | Supported Drivers: "local", "ftp", "sftp", "s3", "rackspace" 41 | | 42 | */ 43 | 44 | 'disks' => [ 45 | 46 | 'local' => [ 47 | 'driver' => 'local', 48 | 'root' => storage_path('app'), 49 | ], 50 | 51 | 'public' => [ 52 | 'driver' => 'local', 53 | 'root' => storage_path('app/public'), 54 | 'url' => env('APP_URL').'/storage', 55 | 'visibility' => 'public', 56 | ], 57 | 58 | 's3' => [ 59 | 'driver' => 's3', 60 | 'key' => env('AWS_ACCESS_KEY_ID'), 61 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 62 | 'region' => env('AWS_DEFAULT_REGION'), 63 | 'bucket' => env('AWS_BUCKET'), 64 | 'url' => env('AWS_URL'), 65 | ], 66 | 67 | ], 68 | 69 | ]; 70 | -------------------------------------------------------------------------------- /resources/js/components/Login.vue: -------------------------------------------------------------------------------- 1 | 30 | 31 | 76 | -------------------------------------------------------------------------------- /public/design/css/owl.carousel.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.1 3 | * Copyright 2013-2017 David Deutsch 4 | * Licensed under () 5 | */ 6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- 1 | env('LOG_CHANNEL', 'stack'), 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Log Channels 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Here you may configure the log channels for your application. Out of 27 | | the box, Laravel uses the Monolog PHP logging library. This gives 28 | | you a variety of powerful log handlers / formatters to utilize. 29 | | 30 | | Available Drivers: "single", "daily", "slack", "syslog", 31 | | "errorlog", "monolog", 32 | | "custom", "stack" 33 | | 34 | */ 35 | 36 | 'channels' => [ 37 | 'stack' => [ 38 | 'driver' => 'stack', 39 | 'channels' => ['daily'], 40 | ], 41 | 42 | 'single' => [ 43 | 'driver' => 'single', 44 | 'path' => storage_path('logs/laravel.log'), 45 | 'level' => 'debug', 46 | ], 47 | 48 | 'daily' => [ 49 | 'driver' => 'daily', 50 | 'path' => storage_path('logs/laravel.log'), 51 | 'level' => 'debug', 52 | 'days' => 14, 53 | ], 54 | 55 | 'slack' => [ 56 | 'driver' => 'slack', 57 | 'url' => env('LOG_SLACK_WEBHOOK_URL'), 58 | 'username' => 'Laravel Log', 59 | 'emoji' => ':boom:', 60 | 'level' => 'critical', 61 | ], 62 | 63 | 'papertrail' => [ 64 | 'driver' => 'monolog', 65 | 'level' => 'debug', 66 | 'handler' => SyslogUdpHandler::class, 67 | 'handler_with' => [ 68 | 'host' => env('PAPERTRAIL_URL'), 69 | 'port' => env('PAPERTRAIL_PORT'), 70 | ], 71 | ], 72 | 73 | 'stderr' => [ 74 | 'driver' => 'monolog', 75 | 'handler' => StreamHandler::class, 76 | 'with' => [ 77 | 'stream' => 'php://stderr', 78 | ], 79 | ], 80 | 81 | 'syslog' => [ 82 | 'driver' => 'syslog', 83 | 'level' => 'debug', 84 | ], 85 | 86 | 'errorlog' => [ 87 | 'driver' => 'errorlog', 88 | 'level' => 'debug', 89 | ], 90 | ], 91 | 92 | ]; 93 | -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- 1 | env('QUEUE_CONNECTION', 'sync'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Queue Connections 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may configure the connection information for each server that 24 | | is used by your application. A default configuration has been added 25 | | for each back-end shipped with Laravel. You are free to add more. 26 | | 27 | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" 28 | | 29 | */ 30 | 31 | 'connections' => [ 32 | 33 | 'sync' => [ 34 | 'driver' => 'sync', 35 | ], 36 | 37 | 'database' => [ 38 | 'driver' => 'database', 39 | 'table' => 'jobs', 40 | 'queue' => 'default', 41 | 'retry_after' => 90, 42 | ], 43 | 44 | 'beanstalkd' => [ 45 | 'driver' => 'beanstalkd', 46 | 'host' => 'localhost', 47 | 'queue' => 'default', 48 | 'retry_after' => 90, 49 | ], 50 | 51 | 'sqs' => [ 52 | 'driver' => 'sqs', 53 | 'key' => env('SQS_KEY', 'your-public-key'), 54 | 'secret' => env('SQS_SECRET', 'your-secret-key'), 55 | 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 56 | 'queue' => env('SQS_QUEUE', 'your-queue-name'), 57 | 'region' => env('SQS_REGION', 'us-east-1'), 58 | ], 59 | 60 | 'redis' => [ 61 | 'driver' => 'redis', 62 | 'connection' => 'default', 63 | 'queue' => env('REDIS_QUEUE', 'default'), 64 | 'retry_after' => 90, 65 | 'block_for' => null, 66 | ], 67 | 68 | ], 69 | 70 | /* 71 | |-------------------------------------------------------------------------- 72 | | Failed Queue Jobs 73 | |-------------------------------------------------------------------------- 74 | | 75 | | These options configure the behavior of failed queue job logging so you 76 | | can control which database and table are used to store the jobs that 77 | | have failed. You may change them to any database / table you wish. 78 | | 79 | */ 80 | 81 | 'failed' => [ 82 | 'database' => env('DB_CONNECTION', 'mysql'), 83 | 'table' => 'failed_jobs', 84 | ], 85 | 86 | ]; 87 | -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- 1 | env('CACHE_DRIVER', 'file'), 21 | 22 | /* 23 | |-------------------------------------------------------------------------- 24 | | Cache Stores 25 | |-------------------------------------------------------------------------- 26 | | 27 | | Here you may define all of the cache "stores" for your application as 28 | | well as their drivers. You may even define multiple stores for the 29 | | same cache driver to group types of items stored in your caches. 30 | | 31 | */ 32 | 33 | 'stores' => [ 34 | 35 | 'apc' => [ 36 | 'driver' => 'apc', 37 | ], 38 | 39 | 'array' => [ 40 | 'driver' => 'array', 41 | ], 42 | 43 | 'database' => [ 44 | 'driver' => 'database', 45 | 'table' => 'cache', 46 | 'connection' => null, 47 | ], 48 | 49 | 'file' => [ 50 | 'driver' => 'file', 51 | 'path' => storage_path('framework/cache/data'), 52 | ], 53 | 54 | 'memcached' => [ 55 | 'driver' => 'memcached', 56 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 57 | 'sasl' => [ 58 | env('MEMCACHED_USERNAME'), 59 | env('MEMCACHED_PASSWORD'), 60 | ], 61 | 'options' => [ 62 | // Memcached::OPT_CONNECT_TIMEOUT => 2000, 63 | ], 64 | 'servers' => [ 65 | [ 66 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 67 | 'port' => env('MEMCACHED_PORT', 11211), 68 | 'weight' => 100, 69 | ], 70 | ], 71 | ], 72 | 73 | 'redis' => [ 74 | 'driver' => 'redis', 75 | 'connection' => 'cache', 76 | ], 77 | 78 | ], 79 | 80 | /* 81 | |-------------------------------------------------------------------------- 82 | | Cache Key Prefix 83 | |-------------------------------------------------------------------------- 84 | | 85 | | When utilizing a RAM based store such as APC or Memcached, there might 86 | | be other applications utilizing the same cache. So, we'll specify a 87 | | value to get prefixed to all our keys so we can avoid collisions. 88 | | 89 | */ 90 | 91 | 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), 92 | 93 | ]; 94 | -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- 1 | [ 31 | \App\Http\Middleware\EncryptCookies::class, 32 | \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, 33 | \Illuminate\Session\Middleware\StartSession::class, 34 | // \Illuminate\Session\Middleware\AuthenticateSession::class, 35 | \Illuminate\View\Middleware\ShareErrorsFromSession::class, 36 | \App\Http\Middleware\VerifyCsrfToken::class, 37 | \Illuminate\Routing\Middleware\SubstituteBindings::class, 38 | ], 39 | 40 | 'api' => [ 41 | 'throttle:60,1', 42 | 'bindings', 43 | ], 44 | ]; 45 | 46 | /** 47 | * The application's route middleware. 48 | * 49 | * These middleware may be assigned to groups or used individually. 50 | * 51 | * @var array 52 | */ 53 | protected $routeMiddleware = [ 54 | 'auth' => \App\Http\Middleware\Authenticate::class, 55 | 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 56 | 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class, 57 | 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class, 58 | 'can' => \Illuminate\Auth\Middleware\Authorize::class, 59 | 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 60 | 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class, 61 | 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 62 | 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class, 63 | ]; 64 | 65 | /** 66 | * The priority-sorted list of middleware. 67 | * 68 | * This forces non-global middleware to always be in the given order. 69 | * 70 | * @var array 71 | */ 72 | protected $middlewarePriority = [ 73 | \Illuminate\Session\Middleware\StartSession::class, 74 | \Illuminate\View\Middleware\ShareErrorsFromSession::class, 75 | \App\Http\Middleware\Authenticate::class, 76 | \Illuminate\Session\Middleware\AuthenticateSession::class, 77 | \Illuminate\Routing\Middleware\SubstituteBindings::class, 78 | \Illuminate\Auth\Middleware\Authorize::class, 79 | ]; 80 | } 81 | -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
{{ __('Reset Password') }}
9 | 10 |
11 |
12 | @csrf 13 | 14 | 15 | 16 |
17 | 18 | 19 |
20 | 21 | 22 | @if ($errors->has('email')) 23 | 24 | {{ $errors->first('email') }} 25 | 26 | @endif 27 |
28 |
29 | 30 |
31 | 32 | 33 |
34 | 35 | 36 | @if ($errors->has('password')) 37 | 38 | {{ $errors->first('password') }} 39 | 40 | @endif 41 |
42 |
43 | 44 |
45 | 46 | 47 |
48 | 49 |
50 |
51 | 52 |
53 |
54 | 57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 | @endsection 66 | -------------------------------------------------------------------------------- /resources/js/components/Register.vue: -------------------------------------------------------------------------------- 1 | 51 | 52 | 98 | -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'guard' => 'web', 18 | 'passwords' => 'users', 19 | ], 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Authentication Guards 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Next, you may define every authentication guard for your application. 27 | | Of course, a great default configuration has been defined for you 28 | | here which uses session storage and the Eloquent user provider. 29 | | 30 | | All authentication drivers have a user provider. This defines how the 31 | | users are actually retrieved out of your database or other storage 32 | | mechanisms used by this application to persist your user's data. 33 | | 34 | | Supported: "session", "token" 35 | | 36 | */ 37 | 38 | 'guards' => [ 39 | 'web' => [ 40 | 'driver' => 'session', 41 | 'provider' => 'users', 42 | ], 43 | 44 | 'api' => [ 45 | 'driver' => 'token', 46 | 'provider' => 'users', 47 | ], 48 | ], 49 | 50 | /* 51 | |-------------------------------------------------------------------------- 52 | | User Providers 53 | |-------------------------------------------------------------------------- 54 | | 55 | | All authentication drivers have a user provider. This defines how the 56 | | users are actually retrieved out of your database or other storage 57 | | mechanisms used by this application to persist your user's data. 58 | | 59 | | If you have multiple user tables or models you may configure multiple 60 | | sources which represent each model / table. These sources may then 61 | | be assigned to any extra authentication guards you have defined. 62 | | 63 | | Supported: "database", "eloquent" 64 | | 65 | */ 66 | 67 | 'providers' => [ 68 | 'users' => [ 69 | 'driver' => 'eloquent', 70 | 'model' => App\User::class, 71 | ], 72 | 73 | // 'users' => [ 74 | // 'driver' => 'database', 75 | // 'table' => 'users', 76 | // ], 77 | ], 78 | 79 | /* 80 | |-------------------------------------------------------------------------- 81 | | Resetting Passwords 82 | |-------------------------------------------------------------------------- 83 | | 84 | | You may specify multiple password reset configurations if you have more 85 | | than one user table or model in the application and you want to have 86 | | separate password reset settings based on the specific user types. 87 | | 88 | | The expire time is the number of minutes that the reset token should be 89 | | considered valid. This security feature keeps tokens short-lived so 90 | | they have less time to be guessed. You may change this as needed. 91 | | 92 | */ 93 | 94 | 'passwords' => [ 95 | 'users' => [ 96 | 'provider' => 'users', 97 | 'table' => 'password_resets', 98 | 'expire' => 60, 99 | ], 100 | ], 101 | 102 | ]; 103 | -------------------------------------------------------------------------------- /public/design/js/main.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | "use strict"; 3 | 4 | /*------------------------------------ 5 | Sticky Menu 6 | --------------------------------------*/ 7 | var windows = $(window); 8 | var stick = $(".header-sticky"); 9 | windows.on('scroll',function() { 10 | var scroll = windows.scrollTop(); 11 | if (scroll < 5) { 12 | stick.removeClass("sticky"); 13 | }else{ 14 | stick.addClass("sticky"); 15 | } 16 | }); 17 | /*------------------------------------ 18 | jQuery MeanMenu 19 | --------------------------------------*/ 20 | $('.main-menu nav').meanmenu({ 21 | meanScreenWidth: "767", 22 | meanMenuContainer: '.mobile-menu' 23 | }); 24 | 25 | 26 | /* last 2 li child add class */ 27 | $('ul.menu>li').slice(-2).addClass('last-elements'); 28 | /*------------------------------------ 29 | Owl Carousel 30 | --------------------------------------*/ 31 | $('.slider-owl').owlCarousel({ 32 | loop:true, 33 | nav:true, 34 | animateOut: 'fadeOut', 35 | animateIn: 'fadeIn', 36 | smartSpeed: 2500, 37 | navText:['',''], 38 | responsive:{ 39 | 0:{ 40 | items:1 41 | }, 42 | 768:{ 43 | items:1 44 | }, 45 | 1000:{ 46 | items:1 47 | } 48 | } 49 | }); 50 | 51 | $('.partner-owl').owlCarousel({ 52 | loop:true, 53 | nav:true, 54 | navText:['',''], 55 | responsive:{ 56 | 0:{ 57 | items:1 58 | }, 59 | 768:{ 60 | items:3 61 | }, 62 | 1000:{ 63 | items:5 64 | } 65 | } 66 | }); 67 | 68 | $('.testimonial-owl').owlCarousel({ 69 | loop:true, 70 | nav:true, 71 | navText:['',''], 72 | responsive:{ 73 | 0:{ 74 | items:1 75 | }, 76 | 768:{ 77 | items:1 78 | }, 79 | 1000:{ 80 | items:1 81 | } 82 | } 83 | }); 84 | /*------------------------------------ 85 | Video Player 86 | --------------------------------------*/ 87 | $('.video-popup').magnificPopup({ 88 | type: 'iframe', 89 | mainClass: 'mfp-fade', 90 | removalDelay: 160, 91 | preloader: false, 92 | zoom: { 93 | enabled: true, 94 | } 95 | }); 96 | 97 | $('.image-popup').magnificPopup({ 98 | type: 'image', 99 | gallery:{ 100 | enabled:true 101 | } 102 | }); 103 | /*---------------------------- 104 | Wow js active 105 | ------------------------------ */ 106 | new WOW().init(); 107 | /*------------------------------------ 108 | Scrollup 109 | --------------------------------------*/ 110 | $.scrollUp({ 111 | scrollText: '', 112 | easingType: 'linear', 113 | scrollSpeed: 900, 114 | animation: 'fade' 115 | }); 116 | /*------------------------------------ 117 | Nicescroll 118 | --------------------------------------*/ 119 | $('body').scrollspy({ 120 | target: '.navbar-collapse', 121 | offset: 95 122 | }); 123 | $(".notice-left").niceScroll({ 124 | cursorcolor: "#EC1C23", 125 | cursorborder: "0px solid #fff", 126 | autohidemode: false, 127 | 128 | }); 129 | 130 | })(jQuery); -------------------------------------------------------------------------------- /resources/views/admin/series/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.admin') 2 | @section('content') 3 | 4 | 19 | 20 |
21 |
22 |
23 |
24 | @foreach($series as $item) 25 |
26 |
27 |

28 | 20 29 | June 30 | 31 |

32 |
33 |
34 |
35 |

36 | MICRO BIOLOGICAL WORKSHOP 37 |

38 |
    39 |
  • 9.00 AM - 4.45 PM
  • 40 |
  • New Yourk City
  • 41 |
42 |
43 |
44 | join now 45 |
46 |
47 |
48 | @endforeach 49 |
50 |
51 | 72 |
73 |
74 |
75 |
76 | 77 | @endsection -------------------------------------------------------------------------------- /resources/views/layouts/partials/nav.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 | 10 |
11 |
12 |
13 | 14 | 60 | 61 | 62 |
63 |
64 |
65 |
66 |
67 |
68 | -------------------------------------------------------------------------------- /public/svg/404.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/design/css/meanmenu.css: -------------------------------------------------------------------------------- 1 | 2 | /*! ####################################################################### 3 | 4 | MeanMenu 2.0.7 5 | -------- 6 | 7 | To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/) 8 | 9 | ####################################################################### */ 10 | 11 | /* hide the link until viewport size is reached */ 12 | a.meanmenu-reveal { 13 | display: none; 14 | } 15 | /* when under viewport size, .mean-container is added to body */ 16 | .mean-container .mean-bar { 17 | float: left; 18 | width: 100%; 19 | position: relative; 20 | background: #0c1923; 21 | padding: 4px 0; 22 | min-height: 42px; 23 | z-index: 999999; 24 | } 25 | .mean-container a.meanmenu-reveal { 26 | color: #fff; 27 | cursor: pointer; 28 | display: block; 29 | font-family: Arial,Helvetica,sans-serif; 30 | font-weight: 700; 31 | height: 22px; 32 | line-height: 22px; 33 | padding: 13px 13px 11px; 34 | position: absolute; 35 | right: 0; 36 | text-decoration: none; 37 | top: 0; 38 | width: 22px; 39 | } 40 | .mean-container a.meanmenu-reveal span { 41 | display: block; 42 | background: #fff; 43 | height: 3px; 44 | margin-top: 3px; 45 | } 46 | .mean-container .mean-nav { 47 | background: #ffffff none repeat scroll 0 0; 48 | float: left; 49 | margin-top: 44px; 50 | width: 100%; 51 | } 52 | .mean-container .mean-nav ul { 53 | padding: 0; 54 | margin: 0; 55 | width: 100%; 56 | list-style-type: none; 57 | } 58 | .mean-container .mean-nav ul li { 59 | position: relative; 60 | float: left; 61 | width: 100%; 62 | } 63 | .mean-container .mean-nav ul li a { 64 | border-top: 1px solid rgba(0, 0, 0, 0.5); 65 | border-left: 1px solid rgba(0, 0, 0, 0.5); 66 | color: #000000; 67 | display: block; 68 | float: left; 69 | font-size: 12px; 70 | font-weight: 500; 71 | margin: 0; 72 | padding: 1.2em 5%; 73 | text-align: left; 74 | text-decoration: none; 75 | text-transform: uppercase; 76 | width: 90%; 77 | line-height: 17px; 78 | } 79 | .mean-last { 80 | border-bottom: 1px solid rgba(0, 0, 0, 0.5); 81 | } 82 | .mean-container .mean-nav ul li a:hover {color: #EC1C23;} 83 | .mean-container .mean-nav ul li li a { 84 | width: 80%; 85 | padding: 1em 10%; 86 | border-top: 1px solid #f1f1f1; 87 | border-top: 1px solid rgba(0, 0, 0, 0.5); 88 | opacity: 0.8; 89 | filter: alpha(opacity=75); 90 | text-shadow: none !important; 91 | visibility: visible; 92 | } 93 | .mean-container .mean-nav ul li.mean-last a { 94 | border-bottom: none; 95 | margin-bottom: 0; 96 | } 97 | .mean-container .mean-nav ul li li li a { 98 | width: 70%; 99 | padding: 1em 15%; 100 | } 101 | .mean-container .mean-nav ul li li li li a { 102 | width: 60%; 103 | padding: 1em 20%; 104 | } 105 | .mean-container .mean-nav ul li li li li li a { 106 | width: 50%; 107 | padding: 1em 25%; 108 | } 109 | .mean-container .mean-nav ul li a:hover { 110 | background: #252525; 111 | background: rgba(255,255,255,0.1); 112 | } 113 | .mean-container .mean-nav ul li a.mean-expand { 114 | -moz-border-bottom-colors: none; 115 | -moz-border-left-colors: none; 116 | -moz-border-right-colors: none; 117 | -moz-border-top-colors: none; 118 | background: rgba(255, 255, 255, 0.1) none repeat scroll 0 0; 119 | border-color: currentcolor currentcolor rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.7); 120 | border-image: none; 121 | border-style: none none solid solid; 122 | border-width: medium medium 1px 1px; 123 | font-weight: 700; 124 | height: 22px; 125 | line-height: 21px; 126 | margin-top: 1px; 127 | padding: 11.5px 12px; 128 | position: absolute; 129 | right: 0; 130 | text-align: center; 131 | top: 0; 132 | width: 22px; 133 | z-index: 2; 134 | } 135 | .mean-container .mean-nav ul li a.mean-expand:hover { 136 | background: rgba(0, 0, 0, 0.9) none repeat scroll 0 0; 137 | color: #ffffff; 138 | } 139 | .mean-container .mean-push { 140 | float: left; 141 | width: 100%; 142 | padding: 0; 143 | margin: 0; 144 | clear: both; 145 | } 146 | .mean-nav .wrapper { 147 | width: 100%; 148 | padding: 0; 149 | margin: 0; 150 | } 151 | /* Fix for box sizing on Foundation Framework etc. */ 152 | .mean-container .mean-bar, .mean-container .mean-bar * { 153 | -webkit-box-sizing: content-box; 154 | -moz-box-sizing: content-box; 155 | box-sizing: content-box; 156 | } 157 | .mean-remove { 158 | display: none !important; 159 | } 160 | .mean-nav span { 161 | display: none; 162 | } -------------------------------------------------------------------------------- /public/design/css/magnific-popup.css: -------------------------------------------------------------------------------- 1 | .mfp-bg,.mfp-wrap{position:fixed;left:0;top:0}.mfp-bg,.mfp-container,.mfp-wrap{height:100%;width:100%}.mfp-arrow:after,.mfp-arrow:before,.mfp-container:before,.mfp-figure:after{content:''}.mfp-bg{z-index:1042;overflow:hidden;background:#0b0b0b;opacity:.8}.mfp-wrap{z-index:1043;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-close,.mfp-preloader a:hover{color:#FFF}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}.mfp-figure:after,.mfp-iframe-scaler iframe{box-shadow:0 0 8px rgba(0,0,0,.6);position:absolute;left:0}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-figure,img.mfp-img{line-height:0}.mfp-arrow{position:absolute;opacity:.65;margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:focus,.mfp-arrow:hover{opacity:1}.mfp-arrow:after,.mfp-arrow:before{display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3F3F3F}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{display:block;top:0;width:100%;height:100%;background:#000}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{top:40px;bottom:40px;right:0;z-index:-1;background:#444}.mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | env('DB_CONNECTION', 'mysql'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Database Connections 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here are each of the database connections setup for your application. 24 | | Of course, examples of configuring each database platform that is 25 | | supported by Laravel is shown below to make development simple. 26 | | 27 | | 28 | | All database work in Laravel is done through the PHP PDO facilities 29 | | so make sure you have the driver for your particular database of 30 | | choice installed on your machine before you begin development. 31 | | 32 | */ 33 | 34 | 'connections' => [ 35 | 36 | 'sqlite' => [ 37 | 'driver' => 'sqlite', 38 | 'database' => env('DB_DATABASE', database_path('database.sqlite')), 39 | 'prefix' => '', 40 | 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), 41 | ], 42 | 43 | 'testing' => [ 44 | 'driver' => 'sqlite', 45 | 'database' => env('DB_DATABASE_TESTING', database_path('testing.sqlite')), 46 | 'prefix' => '', 47 | 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), 48 | ], 49 | 50 | 'mysql' => [ 51 | 'driver' => 'mysql', 52 | 'host' => env('DB_HOST', '127.0.0.1'), 53 | 'port' => env('DB_PORT', '3306'), 54 | 'database' => env('DB_DATABASE', 'forge'), 55 | 'username' => env('DB_USERNAME', 'forge'), 56 | 'password' => env('DB_PASSWORD', ''), 57 | 'unix_socket' => env('DB_SOCKET', ''), 58 | 'charset' => 'utf8mb4', 59 | 'collation' => 'utf8mb4_unicode_ci', 60 | 'prefix' => '', 61 | 'prefix_indexes' => true, 62 | 'strict' => true, 63 | 'engine' => null, 64 | ], 65 | 66 | 'pgsql' => [ 67 | 'driver' => 'pgsql', 68 | 'host' => env('DB_HOST', '127.0.0.1'), 69 | 'port' => env('DB_PORT', '5432'), 70 | 'database' => env('DB_DATABASE', 'forge'), 71 | 'username' => env('DB_USERNAME', 'forge'), 72 | 'password' => env('DB_PASSWORD', ''), 73 | 'charset' => 'utf8', 74 | 'prefix' => '', 75 | 'prefix_indexes' => true, 76 | 'schema' => 'public', 77 | 'sslmode' => 'prefer', 78 | ], 79 | 80 | 'sqlsrv' => [ 81 | 'driver' => 'sqlsrv', 82 | 'host' => env('DB_HOST', 'localhost'), 83 | 'port' => env('DB_PORT', '1433'), 84 | 'database' => env('DB_DATABASE', 'forge'), 85 | 'username' => env('DB_USERNAME', 'forge'), 86 | 'password' => env('DB_PASSWORD', ''), 87 | 'charset' => 'utf8', 88 | 'prefix' => '', 89 | 'prefix_indexes' => true, 90 | ], 91 | 92 | ], 93 | 94 | /* 95 | |-------------------------------------------------------------------------- 96 | | Migration Repository Table 97 | |-------------------------------------------------------------------------- 98 | | 99 | | This table keeps track of all the migrations that have already run for 100 | | your application. Using this information, we can determine which of 101 | | the migrations on disk haven't actually been run in the database. 102 | | 103 | */ 104 | 105 | 'migrations' => 'migrations', 106 | 107 | /* 108 | |-------------------------------------------------------------------------- 109 | | Redis Databases 110 | |-------------------------------------------------------------------------- 111 | | 112 | | Redis is an open source, fast, and advanced key-value store that also 113 | | provides a richer body of commands than a typical key-value system 114 | | such as APC or Memcached. Laravel makes it easy to dig right in. 115 | | 116 | */ 117 | 118 | 'redis' => [ 119 | 120 | 'client' => 'predis', 121 | 122 | 'default' => [ 123 | 'host' => env('REDIS_HOST', '127.0.0.1'), 124 | 'password' => env('REDIS_PASSWORD', null), 125 | 'port' => env('REDIS_PORT', 6379), 126 | 'database' => env('REDIS_DB', 0), 127 | ], 128 | 129 | 'cache' => [ 130 | 'host' => env('REDIS_HOST', '127.0.0.1'), 131 | 'password' => env('REDIS_PASSWORD', null), 132 | 'port' => env('REDIS_PORT', 6379), 133 | 'database' => env('REDIS_CACHE_DB', 1), 134 | ], 135 | 136 | ], 137 | 138 | ]; 139 | -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- 1 | env('MAIL_DRIVER', 'smtp'), 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | SMTP Host Address 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Here you may provide the host address of the SMTP server used by your 27 | | applications. A default option is provided that is compatible with 28 | | the Mailgun mail service which will provide reliable deliveries. 29 | | 30 | */ 31 | 32 | 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), 33 | 34 | /* 35 | |-------------------------------------------------------------------------- 36 | | SMTP Host Port 37 | |-------------------------------------------------------------------------- 38 | | 39 | | This is the SMTP port used by your application to deliver e-mails to 40 | | users of the application. Like the host we have set this value to 41 | | stay compatible with the Mailgun e-mail application by default. 42 | | 43 | */ 44 | 45 | 'port' => env('MAIL_PORT', 587), 46 | 47 | /* 48 | |-------------------------------------------------------------------------- 49 | | Global "From" Address 50 | |-------------------------------------------------------------------------- 51 | | 52 | | You may wish for all e-mails sent by your application to be sent from 53 | | the same address. Here, you may specify a name and address that is 54 | | used globally for all e-mails that are sent by your application. 55 | | 56 | */ 57 | 58 | 'from' => [ 59 | 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 60 | 'name' => env('MAIL_FROM_NAME', 'Example'), 61 | ], 62 | 63 | /* 64 | |-------------------------------------------------------------------------- 65 | | E-Mail Encryption Protocol 66 | |-------------------------------------------------------------------------- 67 | | 68 | | Here you may specify the encryption protocol that should be used when 69 | | the application send e-mail messages. A sensible default using the 70 | | transport layer security protocol should provide great security. 71 | | 72 | */ 73 | 74 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 75 | 76 | /* 77 | |-------------------------------------------------------------------------- 78 | | SMTP Server Username 79 | |-------------------------------------------------------------------------- 80 | | 81 | | If your SMTP server requires a username for authentication, you should 82 | | set it here. This will get used to authenticate with your server on 83 | | connection. You may also set the "password" value below this one. 84 | | 85 | */ 86 | 87 | 'username' => env('MAIL_USERNAME'), 88 | 89 | 'password' => env('MAIL_PASSWORD'), 90 | 91 | /* 92 | |-------------------------------------------------------------------------- 93 | | Sendmail System Path 94 | |-------------------------------------------------------------------------- 95 | | 96 | | When using the "sendmail" driver to send e-mails, we will need to know 97 | | the path to where Sendmail lives on this server. A default path has 98 | | been provided here, which will work well on most of your systems. 99 | | 100 | */ 101 | 102 | 'sendmail' => '/usr/sbin/sendmail -bs', 103 | 104 | /* 105 | |-------------------------------------------------------------------------- 106 | | Markdown Mail Settings 107 | |-------------------------------------------------------------------------- 108 | | 109 | | If you are using Markdown based email rendering, you may configure your 110 | | theme and component paths here, allowing you to customize the design 111 | | of the emails. Or, you may simply stick with the Laravel defaults! 112 | | 113 | */ 114 | 115 | 'markdown' => [ 116 | 'theme' => 'default', 117 | 118 | 'paths' => [ 119 | resource_path('views/vendor/mail'), 120 | ], 121 | ], 122 | 123 | /* 124 | |-------------------------------------------------------------------------- 125 | | Log Channel 126 | |-------------------------------------------------------------------------- 127 | | 128 | | If you are using the "log" driver, you may specify the logging channel 129 | | if you prefer to keep mail messages separate from other log entries 130 | | for simpler reading. Otherwise, the default channel will be used. 131 | | 132 | */ 133 | 134 | 'log_channel' => env('MAIL_LOG_CHANNEL'), 135 | 136 | ]; 137 | -------------------------------------------------------------------------------- /public/svg/503.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/svg/403.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /resources/views/layouts/partials/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 | 10 | 27 |
28 |
29 |
30 |
31 | 32 | 33 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /.idea/edume.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- 1 | env('SESSION_DRIVER', 'file'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Session Lifetime 26 | |-------------------------------------------------------------------------- 27 | | 28 | | Here you may specify the number of minutes that you wish the session 29 | | to be allowed to remain idle before it expires. If you want them 30 | | to immediately expire on the browser closing, set that option. 31 | | 32 | */ 33 | 34 | 'lifetime' => env('SESSION_LIFETIME', 120), 35 | 36 | 'expire_on_close' => false, 37 | 38 | /* 39 | |-------------------------------------------------------------------------- 40 | | Session Encryption 41 | |-------------------------------------------------------------------------- 42 | | 43 | | This option allows you to easily specify that all of your session data 44 | | should be encrypted before it is stored. All encryption will be run 45 | | automatically by Laravel and you can use the Session like normal. 46 | | 47 | */ 48 | 49 | 'encrypt' => false, 50 | 51 | /* 52 | |-------------------------------------------------------------------------- 53 | | Session File Location 54 | |-------------------------------------------------------------------------- 55 | | 56 | | When using the native session driver, we need a location where session 57 | | files may be stored. A default has been set for you but a different 58 | | location may be specified. This is only needed for file sessions. 59 | | 60 | */ 61 | 62 | 'files' => storage_path('framework/sessions'), 63 | 64 | /* 65 | |-------------------------------------------------------------------------- 66 | | Session Database Connection 67 | |-------------------------------------------------------------------------- 68 | | 69 | | When using the "database" or "redis" session drivers, you may specify a 70 | | connection that should be used to manage these sessions. This should 71 | | correspond to a connection in your database configuration options. 72 | | 73 | */ 74 | 75 | 'connection' => env('SESSION_CONNECTION', null), 76 | 77 | /* 78 | |-------------------------------------------------------------------------- 79 | | Session Database Table 80 | |-------------------------------------------------------------------------- 81 | | 82 | | When using the "database" session driver, you may specify the table we 83 | | should use to manage the sessions. Of course, a sensible default is 84 | | provided for you; however, you are free to change this as needed. 85 | | 86 | */ 87 | 88 | 'table' => 'sessions', 89 | 90 | /* 91 | |-------------------------------------------------------------------------- 92 | | Session Cache Store 93 | |-------------------------------------------------------------------------- 94 | | 95 | | When using the "apc" or "memcached" session drivers, you may specify a 96 | | cache store that should be used for these sessions. This value must 97 | | correspond with one of the application's configured cache stores. 98 | | 99 | */ 100 | 101 | 'store' => env('SESSION_STORE', null), 102 | 103 | /* 104 | |-------------------------------------------------------------------------- 105 | | Session Sweeping Lottery 106 | |-------------------------------------------------------------------------- 107 | | 108 | | Some session drivers must manually sweep their storage location to get 109 | | rid of old sessions from storage. Here are the chances that it will 110 | | happen on a given request. By default, the odds are 2 out of 100. 111 | | 112 | */ 113 | 114 | 'lottery' => [2, 100], 115 | 116 | /* 117 | |-------------------------------------------------------------------------- 118 | | Session Cookie Name 119 | |-------------------------------------------------------------------------- 120 | | 121 | | Here you may change the name of the cookie used to identify a session 122 | | instance by ID. The name specified here will get used every time a 123 | | new session cookie is created by the framework for every driver. 124 | | 125 | */ 126 | 127 | 'cookie' => env( 128 | 'SESSION_COOKIE', 129 | Str::slug(env('APP_NAME', 'laravel'), '_').'_session' 130 | ), 131 | 132 | /* 133 | |-------------------------------------------------------------------------- 134 | | Session Cookie Path 135 | |-------------------------------------------------------------------------- 136 | | 137 | | The session cookie path determines the path for which the cookie will 138 | | be regarded as available. Typically, this will be the root path of 139 | | your application but you are free to change this when necessary. 140 | | 141 | */ 142 | 143 | 'path' => '/', 144 | 145 | /* 146 | |-------------------------------------------------------------------------- 147 | | Session Cookie Domain 148 | |-------------------------------------------------------------------------- 149 | | 150 | | Here you may change the domain of the cookie used to identify a session 151 | | in your application. This will determine which domains the cookie is 152 | | available to in your application. A sensible default has been set. 153 | | 154 | */ 155 | 156 | 'domain' => env('SESSION_DOMAIN', null), 157 | 158 | /* 159 | |-------------------------------------------------------------------------- 160 | | HTTPS Only Cookies 161 | |-------------------------------------------------------------------------- 162 | | 163 | | By setting this option to true, session cookies will only be sent back 164 | | to the server if the browser has a HTTPS connection. This will keep 165 | | the cookie from being sent to you if it can not be done securely. 166 | | 167 | */ 168 | 169 | 'secure' => env('SESSION_SECURE_COOKIE', false), 170 | 171 | /* 172 | |-------------------------------------------------------------------------- 173 | | HTTP Access Only 174 | |-------------------------------------------------------------------------- 175 | | 176 | | Setting this value to true will prevent JavaScript from accessing the 177 | | value of the cookie and the cookie will only be accessible through 178 | | the HTTP protocol. You are free to modify this option if needed. 179 | | 180 | */ 181 | 182 | 'http_only' => true, 183 | 184 | /* 185 | |-------------------------------------------------------------------------- 186 | | Same-Site Cookies 187 | |-------------------------------------------------------------------------- 188 | | 189 | | This option determines how your cookies behave when cross-site requests 190 | | take place, and can be used to mitigate CSRF attacks. By default, we 191 | | do not enable this as other CSRF protection services are in place. 192 | | 193 | | Supported: "lax", "strict" 194 | | 195 | */ 196 | 197 | 'same_site' => null, 198 | 199 | ]; 200 | -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- 1 | 'The :attribute must be accepted.', 17 | 'active_url' => 'The :attribute is not a valid URL.', 18 | 'after' => 'The :attribute must be a date after :date.', 19 | 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', 20 | 'alpha' => 'The :attribute may only contain letters.', 21 | 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', 22 | 'alpha_num' => 'The :attribute may only contain letters and numbers.', 23 | 'array' => 'The :attribute must be an array.', 24 | 'before' => 'The :attribute must be a date before :date.', 25 | 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 26 | 'between' => [ 27 | 'numeric' => 'The :attribute must be between :min and :max.', 28 | 'file' => 'The :attribute must be between :min and :max kilobytes.', 29 | 'string' => 'The :attribute must be between :min and :max characters.', 30 | 'array' => 'The :attribute must have between :min and :max items.', 31 | ], 32 | 'boolean' => 'The :attribute field must be true or false.', 33 | 'confirmed' => 'The :attribute confirmation does not match.', 34 | 'date' => 'The :attribute is not a valid date.', 35 | 'date_equals' => 'The :attribute must be a date equal to :date.', 36 | 'date_format' => 'The :attribute does not match the format :format.', 37 | 'different' => 'The :attribute and :other must be different.', 38 | 'digits' => 'The :attribute must be :digits digits.', 39 | 'digits_between' => 'The :attribute must be between :min and :max digits.', 40 | 'dimensions' => 'The :attribute has invalid image dimensions.', 41 | 'distinct' => 'The :attribute field has a duplicate value.', 42 | 'email' => 'The :attribute must be a valid email address.', 43 | 'exists' => 'The selected :attribute is invalid.', 44 | 'file' => 'The :attribute must be a file.', 45 | 'filled' => 'The :attribute field must have a value.', 46 | 'gt' => [ 47 | 'numeric' => 'The :attribute must be greater than :value.', 48 | 'file' => 'The :attribute must be greater than :value kilobytes.', 49 | 'string' => 'The :attribute must be greater than :value characters.', 50 | 'array' => 'The :attribute must have more than :value items.', 51 | ], 52 | 'gte' => [ 53 | 'numeric' => 'The :attribute must be greater than or equal :value.', 54 | 'file' => 'The :attribute must be greater than or equal :value kilobytes.', 55 | 'string' => 'The :attribute must be greater than or equal :value characters.', 56 | 'array' => 'The :attribute must have :value items or more.', 57 | ], 58 | 'image' => 'The :attribute must be an image.', 59 | 'in' => 'The selected :attribute is invalid.', 60 | 'in_array' => 'The :attribute field does not exist in :other.', 61 | 'integer' => 'The :attribute must be an integer.', 62 | 'ip' => 'The :attribute must be a valid IP address.', 63 | 'ipv4' => 'The :attribute must be a valid IPv4 address.', 64 | 'ipv6' => 'The :attribute must be a valid IPv6 address.', 65 | 'json' => 'The :attribute must be a valid JSON string.', 66 | 'lt' => [ 67 | 'numeric' => 'The :attribute must be less than :value.', 68 | 'file' => 'The :attribute must be less than :value kilobytes.', 69 | 'string' => 'The :attribute must be less than :value characters.', 70 | 'array' => 'The :attribute must have less than :value items.', 71 | ], 72 | 'lte' => [ 73 | 'numeric' => 'The :attribute must be less than or equal :value.', 74 | 'file' => 'The :attribute must be less than or equal :value kilobytes.', 75 | 'string' => 'The :attribute must be less than or equal :value characters.', 76 | 'array' => 'The :attribute must not have more than :value items.', 77 | ], 78 | 'max' => [ 79 | 'numeric' => 'The :attribute may not be greater than :max.', 80 | 'file' => 'The :attribute may not be greater than :max kilobytes.', 81 | 'string' => 'The :attribute may not be greater than :max characters.', 82 | 'array' => 'The :attribute may not have more than :max items.', 83 | ], 84 | 'mimes' => 'The :attribute must be a file of type: :values.', 85 | 'mimetypes' => 'The :attribute must be a file of type: :values.', 86 | 'min' => [ 87 | 'numeric' => 'The :attribute must be at least :min.', 88 | 'file' => 'The :attribute must be at least :min kilobytes.', 89 | 'string' => 'The :attribute must be at least :min characters.', 90 | 'array' => 'The :attribute must have at least :min items.', 91 | ], 92 | 'not_in' => 'The selected :attribute is invalid.', 93 | 'not_regex' => 'The :attribute format is invalid.', 94 | 'numeric' => 'The :attribute must be a number.', 95 | 'present' => 'The :attribute field must be present.', 96 | 'regex' => 'The :attribute format is invalid.', 97 | 'required' => 'The :attribute field is required.', 98 | 'required_if' => 'The :attribute field is required when :other is :value.', 99 | 'required_unless' => 'The :attribute field is required unless :other is in :values.', 100 | 'required_with' => 'The :attribute field is required when :values is present.', 101 | 'required_with_all' => 'The :attribute field is required when :values are present.', 102 | 'required_without' => 'The :attribute field is required when :values is not present.', 103 | 'required_without_all' => 'The :attribute field is required when none of :values are present.', 104 | 'same' => 'The :attribute and :other must match.', 105 | 'size' => [ 106 | 'numeric' => 'The :attribute must be :size.', 107 | 'file' => 'The :attribute must be :size kilobytes.', 108 | 'string' => 'The :attribute must be :size characters.', 109 | 'array' => 'The :attribute must contain :size items.', 110 | ], 111 | 'starts_with' => 'The :attribute must start with one of the following: :values', 112 | 'string' => 'The :attribute must be a string.', 113 | 'timezone' => 'The :attribute must be a valid zone.', 114 | 'unique' => 'The :attribute has already been taken.', 115 | 'uploaded' => 'The :attribute failed to upload.', 116 | 'url' => 'The :attribute format is invalid.', 117 | 'uuid' => 'The :attribute must be a valid UUID.', 118 | 119 | /* 120 | |-------------------------------------------------------------------------- 121 | | Custom Validation Language Lines 122 | |-------------------------------------------------------------------------- 123 | | 124 | | Here you may specify custom validation messages for attributes using the 125 | | convention "attribute.rule" to name the lines. This makes it quick to 126 | | specify a specific custom language line for a given attribute rule. 127 | | 128 | */ 129 | 130 | 'custom' => [ 131 | 'attribute-name' => [ 132 | 'rule-name' => 'custom-message', 133 | ], 134 | ], 135 | 136 | /* 137 | |-------------------------------------------------------------------------- 138 | | Custom Validation Attributes 139 | |-------------------------------------------------------------------------- 140 | | 141 | | The following language lines are used to swap our attribute placeholder 142 | | with something more reader friendly such as "E-Mail Address" instead 143 | | of "email". This simply helps us make our message more expressive. 144 | | 145 | */ 146 | 147 | 'attributes' => [], 148 | 149 | ]; 150 | --------------------------------------------------------------------------------