Showing
99 changed files
with
5078 additions
and
0 deletions
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
app/Book.php
0 → 100644
app/Console/Commands/Inspire.php
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Events/Event.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Controllers/Auth/AuthController.php
0 → 100644
app/Http/Controllers/BookController.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/PageController.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Http/Requests/Request.php
0 → 100644
app/Http/routes.php
0 → 100644
app/Jobs/Job.php
0 → 100644
app/Listeners/.gitkeep
0 → 100644
File mode changed
app/Page.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
app/Providers/RouteServiceProvider.php
0 → 100644
app/Repos/BookRepo.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100755
bootstrap/app.php
0 → 100644
bootstrap/autoload.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
composer.lock
0 → 100644
This diff could not be displayed because it is too large.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/broadcasting.php
0 → 100644
config/cache.php
0 → 100644
config/compile.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
database/factories/ModelFactory.php
0 → 100644
database/migrations/.gitkeep
0 → 100644
File mode changed
database/seeds/.gitkeep
0 → 100644
File mode changed
database/seeds/DatabaseSeeder.php
0 → 100644
gulpfile.js
0 → 100644
package.json
0 → 100644
phpspec.yml
0 → 100644
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/css/app.css
0 → 100644
public/css/app.css.map
0 → 100644
public/favicon.ico
0 → 100644
File mode changed
public/index.php
0 → 100644
public/robots.txt
0 → 100644
readme.md
0 → 100644
resources/assets/sass/_blocks.scss
0 → 100644
resources/assets/sass/_buttons.scss
0 → 100644
resources/assets/sass/_forms.scss
0 → 100644
resources/assets/sass/_grid.scss
0 → 100644
resources/assets/sass/_html.scss
0 → 100644
resources/assets/sass/_mixins.scss
0 → 100644
resources/assets/sass/_reset.scss
0 → 100644
resources/assets/sass/_text.scss
0 → 100644
resources/assets/sass/_variables.scss
0 → 100644
resources/assets/sass/styles.scss
0 → 100644
resources/lang/en/pagination.php
0 → 100644
resources/lang/en/passwords.php
0 → 100644
resources/lang/en/validation.php
0 → 100644
resources/views/base.blade.php
0 → 100644
resources/views/books/create.blade.php
0 → 100644
resources/views/books/edit.blade.php
0 → 100644
resources/views/books/form.blade.php
0 → 100644
resources/views/books/index.blade.php
0 → 100644
resources/views/books/show.blade.php
0 → 100644
resources/views/errors/503.blade.php
0 → 100644
resources/views/form/delete-button.blade.php
0 → 100644
resources/views/form/text.blade.php
0 → 100644
resources/views/form/textarea.blade.php
0 → 100644
resources/views/vendor/.gitkeep
0 → 100644
File mode changed
server.php
0 → 100644
storage/app/.gitignore
0 → 100755
storage/framework/.gitignore
0 → 100755
storage/framework/cache/.gitignore
0 → 100755
storage/framework/sessions/.gitignore
0 → 100755
storage/framework/views/.gitignore
0 → 100755
storage/logs/.gitignore
0 → 100755
tests/ExampleTest.php
0 → 100644
tests/TestCase.php
0 → 100644
-
Please register or sign in to post a comment