├── .gitignore ├── Core ├── App.php ├── Authenticator.php ├── Container.php ├── Database.php ├── Middleware │ ├── Authenticated.php │ ├── Guest.php │ └── Middleware.php ├── Response.php ├── Router.php ├── Session.php ├── ValidationException.php ├── Validator.php └── functions.php ├── Http ├── Forms │ └── LoginForm.php └── controllers │ ├── about.php │ ├── contact.php │ ├── index.php │ ├── notes │ ├── create.php │ ├── destroy.php │ ├── edit.php │ ├── index.php │ ├── show.php │ ├── store.php │ └── update.php │ ├── registration │ ├── create.php │ └── store.php │ └── session │ ├── create.php │ ├── destroy.php │ └── store.php ├── bootstrap.php ├── composer.json ├── composer.lock ├── config.php ├── phpunit.xml ├── public ├── index.php └── playground.php ├── routes.php ├── tests ├── Feature │ └── ReferralTest.php ├── Pest.php ├── TestCase.php └── Unit │ ├── ContainerTest.php │ └── ValidatorTest.php └── views ├── 403.php ├── 404.php ├── about.view.php ├── contact.view.php ├── index.view.php ├── notes ├── create.view.php ├── edit.view.php ├── index.view.php └── show.view.php ├── partials ├── banner.php ├── footer.php ├── head.php └── nav.php ├── registration └── create.view.php └── session └── create.view.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /Core/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/App.php -------------------------------------------------------------------------------- /Core/Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Authenticator.php -------------------------------------------------------------------------------- /Core/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Container.php -------------------------------------------------------------------------------- /Core/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Database.php -------------------------------------------------------------------------------- /Core/Middleware/Authenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Middleware/Authenticated.php -------------------------------------------------------------------------------- /Core/Middleware/Guest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Middleware/Guest.php -------------------------------------------------------------------------------- /Core/Middleware/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Middleware/Middleware.php -------------------------------------------------------------------------------- /Core/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Response.php -------------------------------------------------------------------------------- /Core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Router.php -------------------------------------------------------------------------------- /Core/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Session.php -------------------------------------------------------------------------------- /Core/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/ValidationException.php -------------------------------------------------------------------------------- /Core/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/Validator.php -------------------------------------------------------------------------------- /Core/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Core/functions.php -------------------------------------------------------------------------------- /Http/Forms/LoginForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/Forms/LoginForm.php -------------------------------------------------------------------------------- /Http/controllers/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/about.php -------------------------------------------------------------------------------- /Http/controllers/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/contact.php -------------------------------------------------------------------------------- /Http/controllers/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/index.php -------------------------------------------------------------------------------- /Http/controllers/notes/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/notes/create.php -------------------------------------------------------------------------------- /Http/controllers/notes/destroy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/notes/destroy.php -------------------------------------------------------------------------------- /Http/controllers/notes/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/notes/edit.php -------------------------------------------------------------------------------- /Http/controllers/notes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/notes/index.php -------------------------------------------------------------------------------- /Http/controllers/notes/show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/notes/show.php -------------------------------------------------------------------------------- /Http/controllers/notes/store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/notes/store.php -------------------------------------------------------------------------------- /Http/controllers/notes/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/notes/update.php -------------------------------------------------------------------------------- /Http/controllers/registration/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/registration/create.php -------------------------------------------------------------------------------- /Http/controllers/registration/store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/registration/store.php -------------------------------------------------------------------------------- /Http/controllers/session/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/session/create.php -------------------------------------------------------------------------------- /Http/controllers/session/destroy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/session/destroy.php -------------------------------------------------------------------------------- /Http/controllers/session/store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/Http/controllers/session/store.php -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/config.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/public/index.php -------------------------------------------------------------------------------- /public/playground.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/public/playground.php -------------------------------------------------------------------------------- /routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/routes.php -------------------------------------------------------------------------------- /tests/Feature/ReferralTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/tests/Feature/ReferralTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/tests/Unit/ContainerTest.php -------------------------------------------------------------------------------- /tests/Unit/ValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/tests/Unit/ValidatorTest.php -------------------------------------------------------------------------------- /views/403.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/403.php -------------------------------------------------------------------------------- /views/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/404.php -------------------------------------------------------------------------------- /views/about.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/about.view.php -------------------------------------------------------------------------------- /views/contact.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/contact.view.php -------------------------------------------------------------------------------- /views/index.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/index.view.php -------------------------------------------------------------------------------- /views/notes/create.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/notes/create.view.php -------------------------------------------------------------------------------- /views/notes/edit.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/notes/edit.view.php -------------------------------------------------------------------------------- /views/notes/index.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/notes/index.view.php -------------------------------------------------------------------------------- /views/notes/show.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/notes/show.view.php -------------------------------------------------------------------------------- /views/partials/banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/partials/banner.php -------------------------------------------------------------------------------- /views/partials/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /views/partials/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/partials/head.php -------------------------------------------------------------------------------- /views/partials/nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/partials/nav.php -------------------------------------------------------------------------------- /views/registration/create.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/registration/create.view.php -------------------------------------------------------------------------------- /views/session/create.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/PHP-For-Beginners-Series/HEAD/views/session/create.view.php --------------------------------------------------------------------------------