├── public ├── favicon.ico ├── robots.txt ├── dist │ ├── img │ │ └── notebook.jpg │ └── css │ │ └── main.css ├── client_secret.json ├── .htaccess ├── web.config └── index.php ├── database ├── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── .gitignore ├── migrations │ ├── .gitkeep │ ├── 2016_09_06_052010_create_notebooks_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_09_10_033454_create_notes_table.php │ ├── 2014_10_12_000000_create_users_table.php │ └── 2016_09_30_002155_create_budgets_table.php └── factories │ └── ModelFactory.php ├── resources ├── views │ ├── vendor │ │ └── .gitkeep │ ├── notes │ │ ├── show.blade.php │ │ ├── edit.blade.php │ │ ├── create.blade.php │ │ └── index.blade.php │ ├── home.blade.php │ ├── upload.blade.php │ ├── frontpage.blade.php │ ├── notebooks │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── errors │ │ └── 503.blade.php │ ├── calendar │ │ └── createEvent.blade.php │ ├── auth │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── login.blade.php │ │ └── register.blade.php │ ├── welcome.blade.php │ └── layouts │ │ ├── base.blade.php │ │ └── app.blade.php ├── assets │ ├── sass │ │ ├── app.scss │ │ └── variables.scss │ └── js │ │ ├── app.js │ │ ├── components │ │ └── Example.vue │ │ └── bootstrap.js └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── Procfile ├── .gitattributes ├── .gitignore ├── app ├── Budget.php ├── Notebook.php ├── Note.php ├── Http │ ├── Controllers │ │ ├── TestController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── Auth │ │ │ ├── ResetPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ └── RegisterController.php │ │ ├── NotebooksController.php │ │ ├── BudgetController.php │ │ ├── NotesController.php │ │ └── gCalendarController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ └── RedirectIfAuthenticated.php │ └── Kernel.php ├── Providers │ ├── AppServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── User.php ├── Console │ └── Kernel.php └── Exceptions │ └── Handler.php ├── package.json ├── tests ├── ExampleTest.php └── TestCase.php ├── gulpfile.js ├── routes ├── console.php ├── api.php └── web.php ├── .env.example ├── server.php ├── phpunit.xml ├── config ├── compile.php ├── services.php ├── view.php ├── broadcasting.php ├── filesystems.php ├── queue.php ├── cache.php ├── auth.php ├── database.php ├── mail.php ├── session.php └── app.php ├── composer.json ├── artisan └── readme.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 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 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public/ 2 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/storage 3 | /vendor 4 | /.idea 5 | Homestead.json 6 | Homestead.yaml 7 | .env 8 | -------------------------------------------------------------------------------- /public/dist/img/notebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevmatics/GoogleCalendarApi/HEAD/public/dist/img/notebook.jpg -------------------------------------------------------------------------------- /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/Budget.php: -------------------------------------------------------------------------------- 1 | hasMany(Note::class); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /app/Note.php: -------------------------------------------------------------------------------- 1 | belongsTo(Notebook::class) ; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Http/Controllers/TestController.php: -------------------------------------------------------------------------------- 1 | call(UsersTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /resources/views/notes/show.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.base') 2 | 3 | @section('content') 4 | 5 |
14 | {{$note->body}} 15 |
16 | 17 |11 | Store and organise your thoughts in notebook and NoteBook web app makes this easier than ever 12 |
13 |14 | 15 | Your NoteBooks 16 | 17 |
18 |
32 |
33 | 31 | {{$note->body}} 32 |
33 | 34 | Edit 35 | 36 | 43 |