├── public
├── favicon.ico
├── robots.txt
├── mix-manifest.json
├── .htaccess
├── web.config
└── index.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
├── database
├── .gitignore
├── seeds
│ ├── DatabaseSeeder.php
│ └── UsersTableSeeder.php
├── migrations
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ ├── 2020_01_11_034610_create_packages_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2019_12_29_131125_create_reminders_table.php
│ ├── 2019_10_21_013218_create_leads_table.php
│ └── 2020_01_11_032608_create_subscribers_table.php
└── factories
│ └── UserFactory.php
├── .gitattributes
├── .idea
├── misc.xml
├── vcs.xml
├── laravel-plugin.xml
├── modules.xml
├── php.xml
└── FitnessForce.iml
├── app
├── Models
│ ├── Package.php
│ ├── Lead.php
│ ├── Subscriber.php
│ └── Reminder.php
├── Http
│ ├── Controllers
│ │ ├── WelcomeController.php
│ │ ├── Controller.php
│ │ ├── SubscriberController.php
│ │ ├── HomeController.php
│ │ ├── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── ResetPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── ConfirmPasswordController.php
│ │ │ ├── VerificationController.php
│ │ │ └── RegisterController.php
│ │ ├── DashboardController.php
│ │ ├── ReminderController.php
│ │ ├── PackageController.php
│ │ ├── LeadSubscriberController.php
│ │ └── LeadController.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── CheckForMaintenanceMode.php
│ │ ├── TrimStrings.php
│ │ ├── TrustProxies.php
│ │ ├── Authenticate.php
│ │ ├── VerifyCsrfToken.php
│ │ └── RedirectIfAuthenticated.php
│ └── Kernel.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ ├── RouteServiceProvider.php
│ └── AppServiceProvider.php
├── Mail
│ └── ReminderEmailDigest.php
├── User.php
├── Console
│ ├── Kernel.php
│ └── Commands
│ │ └── SendReminderEmails.php
└── Exceptions
│ └── Handler.php
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ └── ExampleTest.php
└── CreatesApplication.php
├── .gitignore
├── .editorconfig
├── .styleci.yml
├── resources
├── sass
│ ├── _variables.scss
│ └── app.scss
├── views
│ ├── app.blade.php
│ ├── emails
│ │ └── reminder-digest.blade.php
│ ├── home.blade.php
│ ├── auth
│ │ ├── verify.blade.php
│ │ ├── passwords
│ │ │ ├── email.blade.php
│ │ │ ├── confirm.blade.php
│ │ │ └── reset.blade.php
│ │ ├── login.blade.php
│ │ └── register.blade.php
│ ├── welcome.blade.php
│ └── layouts
│ │ └── app.blade.php
├── js
│ ├── app.js
│ ├── components
│ │ └── ExampleComponent.vue
│ ├── Pages
│ │ ├── Dashboard
│ │ │ ├── Index.vue
│ │ │ ├── ReminderList.vue
│ │ │ └── RemindersList.vue
│ │ ├── Leads
│ │ │ ├── LeadAdd.vue
│ │ │ ├── ReminderForm.vue
│ │ │ ├── LeadReminderAdd.vue
│ │ │ ├── ReminderNote.vue
│ │ │ ├── Index.vue
│ │ │ ├── LeadView.vue
│ │ │ └── ReminderView.vue
│ │ ├── Packages
│ │ │ ├── PackageView.vue
│ │ │ ├── PackageAddForm.vue
│ │ │ └── Index.vue
│ │ └── Subscribers
│ │ │ ├── SubscriberAdd.vue
│ │ │ ├── Index.vue
│ │ │ └── SubsriberForm.vue
│ ├── Shared
│ │ ├── AlertMessages.vue
│ │ ├── Pagination.vue
│ │ ├── Layout.vue
│ │ └── LeadForm.vue
│ └── bootstrap.js
└── lang
│ └── en
│ ├── pagination.php
│ ├── auth.php
│ └── passwords.php
├── routes
├── channels.php
├── api.php
├── console.php
└── web.php
├── webpack.mix.js
├── idea.txt
├── server.php
├── .env.example
├── config
├── services.php
├── view.php
├── hashing.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── logging.php
├── cache.php
├── auth.php
├── mail.php
├── database.php
└── session.php
├── phpunit.xml
├── package.json
├── artisan
├── composer.json
└── readme.md
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 | *.sqlite-journal
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 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
| Id | 15 |Name | 16 |Phone number | 18 |Age | 19 |Package | 20 |Renewal On | 21 |22 | | |
|---|---|---|---|---|---|---|---|
| {{subscriber.id}} | 25 |
26 | |
28 | {{subscriber.email}} | 29 |{{subscriber.phone}} | 30 |{{subscriber.age}} | 31 |{{subscriber.interested_package}} | 32 |{{subscriber.renewal_date}} | 33 |
34 | |
42 |
| Id | 32 |Name | 33 |Phone number | 35 |Age | 36 |Package | 37 |Added On | 38 |39 | | |
|---|---|---|---|---|---|---|---|
| {{lead.id}} | 42 |
43 | |
45 | {{lead.email}} | 46 |{{lead.phone}} | 47 |{{lead.age}} | 48 |{{lead.interested_package}} | 49 |{{lead.created_at}} | 50 |
51 | |
59 |