├── LICENSE.md ├── README.md ├── backend ├── .env.example ├── .gitattributes ├── .gitignore ├── app │ ├── Company.php │ ├── Console │ │ └── Kernel.php │ ├── Employee.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ └── ResetPasswordController.php │ │ │ ├── AuthController.php │ │ │ ├── CompaniesController.php │ │ │ ├── Controller.php │ │ │ └── EmployeesController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ └── VerifyCsrfToken.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── ModelFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2018_07_16_151350_create_companies_table.php │ │ └── 2018_07_16_151403_create_employees_table.php │ └── seeds │ │ ├── DatabaseSeeder.php │ │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── css │ │ └── app.css │ ├── favicon.ico │ ├── index.php │ ├── js │ │ └── app.js │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ ├── js │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ └── components │ │ │ │ └── Example.vue │ │ └── sass │ │ │ ├── _variables.scss │ │ │ └── app.scss │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── server.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── webpack.mix.js ├── react-native ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── Roboto.ttf │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ ├── Zocial.ttf │ │ │ │ └── rubicon-icon-font.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── minicrm │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── assets │ ├── avatar.png │ ├── avatar_company.png │ ├── back.png │ ├── drawer-cover.png │ ├── launchscreen-bg.png │ └── logo-kitchen-sink.png ├── config.js ├── index.js ├── ios │ ├── MiniCRM-tvOS │ │ └── Info.plist │ ├── MiniCRM-tvOSTests │ │ └── Info.plist │ ├── MiniCRM.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── MiniCRM-tvOS.xcscheme │ │ │ └── MiniCRM.xcscheme │ ├── MiniCRM │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── MiniCRMTests │ │ ├── Info.plist │ │ └── MiniCRMTests.m ├── package.json ├── screens │ ├── AddCompany.js │ ├── AddEmployee.js │ ├── CompaniesList.js │ ├── EditCompany.js │ ├── EditEmployee.js │ ├── EmployeesList.js │ ├── Login.js │ ├── Main.js │ ├── ManageCompanies.js │ ├── ManageEmployees.js │ ├── SideBar.js │ ├── ViewCompany.js │ └── ViewEmployee.js └── yarn.lock └── screenshots ├── add companies.png ├── edit companies.png ├── login.png ├── sidemenu.png ├── view companies.png └── view companies:employees.png /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/.gitattributes -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/app/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Company.php -------------------------------------------------------------------------------- /backend/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Console/Kernel.php -------------------------------------------------------------------------------- /backend/app/Employee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Employee.php -------------------------------------------------------------------------------- /backend/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/AuthController.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/CompaniesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/CompaniesController.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /backend/app/Http/Controllers/EmployeesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Controllers/EmployeesController.php -------------------------------------------------------------------------------- /backend/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Kernel.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /backend/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /backend/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /backend/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /backend/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/app/User.php -------------------------------------------------------------------------------- /backend/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/artisan -------------------------------------------------------------------------------- /backend/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/bootstrap/app.php -------------------------------------------------------------------------------- /backend/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/bootstrap/autoload.php -------------------------------------------------------------------------------- /backend/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/composer.json -------------------------------------------------------------------------------- /backend/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/composer.lock -------------------------------------------------------------------------------- /backend/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/app.php -------------------------------------------------------------------------------- /backend/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/auth.php -------------------------------------------------------------------------------- /backend/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/broadcasting.php -------------------------------------------------------------------------------- /backend/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/cache.php -------------------------------------------------------------------------------- /backend/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/database.php -------------------------------------------------------------------------------- /backend/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/filesystems.php -------------------------------------------------------------------------------- /backend/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/mail.php -------------------------------------------------------------------------------- /backend/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/queue.php -------------------------------------------------------------------------------- /backend/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/services.php -------------------------------------------------------------------------------- /backend/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/session.php -------------------------------------------------------------------------------- /backend/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/config/view.php -------------------------------------------------------------------------------- /backend/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /backend/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /backend/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /backend/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /backend/database/migrations/2018_07_16_151350_create_companies_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/database/migrations/2018_07_16_151350_create_companies_table.php -------------------------------------------------------------------------------- /backend/database/migrations/2018_07_16_151403_create_employees_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/database/migrations/2018_07_16_151403_create_employees_table.php -------------------------------------------------------------------------------- /backend/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /backend/database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/phpunit.xml -------------------------------------------------------------------------------- /backend/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/public/.htaccess -------------------------------------------------------------------------------- /backend/public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/public/css/app.css -------------------------------------------------------------------------------- /backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/public/index.php -------------------------------------------------------------------------------- /backend/public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/public/js/app.js -------------------------------------------------------------------------------- /backend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /backend/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/public/web.config -------------------------------------------------------------------------------- /backend/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/readme.md -------------------------------------------------------------------------------- /backend/resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/assets/js/app.js -------------------------------------------------------------------------------- /backend/resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /backend/resources/assets/js/components/Example.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/assets/js/components/Example.vue -------------------------------------------------------------------------------- /backend/resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /backend/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /backend/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/lang/en/auth.php -------------------------------------------------------------------------------- /backend/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /backend/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /backend/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/lang/en/validation.php -------------------------------------------------------------------------------- /backend/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /backend/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/routes/api.php -------------------------------------------------------------------------------- /backend/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/routes/channels.php -------------------------------------------------------------------------------- /backend/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/routes/console.php -------------------------------------------------------------------------------- /backend/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/routes/web.php -------------------------------------------------------------------------------- /backend/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/server.php -------------------------------------------------------------------------------- /backend/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/storage/framework/.gitignore -------------------------------------------------------------------------------- /backend/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/tests/CreatesApplication.php -------------------------------------------------------------------------------- /backend/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /backend/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/tests/TestCase.php -------------------------------------------------------------------------------- /backend/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /backend/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/backend/webpack.mix.js -------------------------------------------------------------------------------- /react-native/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /react-native/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/.buckconfig -------------------------------------------------------------------------------- /react-native/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/.flowconfig -------------------------------------------------------------------------------- /react-native/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /react-native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/.gitignore -------------------------------------------------------------------------------- /react-native/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /react-native/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/App.js -------------------------------------------------------------------------------- /react-native/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/BUCK -------------------------------------------------------------------------------- /react-native/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/build.gradle -------------------------------------------------------------------------------- /react-native/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /react-native/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /react-native/android/app/src/main/java/com/minicrm/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/java/com/minicrm/MainActivity.java -------------------------------------------------------------------------------- /react-native/android/app/src/main/java/com/minicrm/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/java/com/minicrm/MainApplication.java -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /react-native/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /react-native/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/build.gradle -------------------------------------------------------------------------------- /react-native/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/gradle.properties -------------------------------------------------------------------------------- /react-native/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /react-native/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /react-native/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/gradlew -------------------------------------------------------------------------------- /react-native/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/gradlew.bat -------------------------------------------------------------------------------- /react-native/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/keystores/BUCK -------------------------------------------------------------------------------- /react-native/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /react-native/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'MiniCRM' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /react-native/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/app.json -------------------------------------------------------------------------------- /react-native/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/assets/avatar.png -------------------------------------------------------------------------------- /react-native/assets/avatar_company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/assets/avatar_company.png -------------------------------------------------------------------------------- /react-native/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/assets/back.png -------------------------------------------------------------------------------- /react-native/assets/drawer-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/assets/drawer-cover.png -------------------------------------------------------------------------------- /react-native/assets/launchscreen-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/assets/launchscreen-bg.png -------------------------------------------------------------------------------- /react-native/assets/logo-kitchen-sink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/assets/logo-kitchen-sink.png -------------------------------------------------------------------------------- /react-native/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/config.js -------------------------------------------------------------------------------- /react-native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/index.js -------------------------------------------------------------------------------- /react-native/ios/MiniCRM-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM-tvOS/Info.plist -------------------------------------------------------------------------------- /react-native/ios/MiniCRM-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM-tvOSTests/Info.plist -------------------------------------------------------------------------------- /react-native/ios/MiniCRM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /react-native/ios/MiniCRM.xcodeproj/xcshareddata/xcschemes/MiniCRM-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM.xcodeproj/xcshareddata/xcschemes/MiniCRM-tvOS.xcscheme -------------------------------------------------------------------------------- /react-native/ios/MiniCRM.xcodeproj/xcshareddata/xcschemes/MiniCRM.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM.xcodeproj/xcshareddata/xcschemes/MiniCRM.xcscheme -------------------------------------------------------------------------------- /react-native/ios/MiniCRM/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM/AppDelegate.h -------------------------------------------------------------------------------- /react-native/ios/MiniCRM/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM/AppDelegate.m -------------------------------------------------------------------------------- /react-native/ios/MiniCRM/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /react-native/ios/MiniCRM/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /react-native/ios/MiniCRM/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /react-native/ios/MiniCRM/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM/Info.plist -------------------------------------------------------------------------------- /react-native/ios/MiniCRM/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRM/main.m -------------------------------------------------------------------------------- /react-native/ios/MiniCRMTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRMTests/Info.plist -------------------------------------------------------------------------------- /react-native/ios/MiniCRMTests/MiniCRMTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/ios/MiniCRMTests/MiniCRMTests.m -------------------------------------------------------------------------------- /react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/package.json -------------------------------------------------------------------------------- /react-native/screens/AddCompany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/AddCompany.js -------------------------------------------------------------------------------- /react-native/screens/AddEmployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/AddEmployee.js -------------------------------------------------------------------------------- /react-native/screens/CompaniesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/CompaniesList.js -------------------------------------------------------------------------------- /react-native/screens/EditCompany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/EditCompany.js -------------------------------------------------------------------------------- /react-native/screens/EditEmployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/EditEmployee.js -------------------------------------------------------------------------------- /react-native/screens/EmployeesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/EmployeesList.js -------------------------------------------------------------------------------- /react-native/screens/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/Login.js -------------------------------------------------------------------------------- /react-native/screens/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/Main.js -------------------------------------------------------------------------------- /react-native/screens/ManageCompanies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/ManageCompanies.js -------------------------------------------------------------------------------- /react-native/screens/ManageEmployees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/ManageEmployees.js -------------------------------------------------------------------------------- /react-native/screens/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/SideBar.js -------------------------------------------------------------------------------- /react-native/screens/ViewCompany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/ViewCompany.js -------------------------------------------------------------------------------- /react-native/screens/ViewEmployee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/screens/ViewEmployee.js -------------------------------------------------------------------------------- /react-native/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/react-native/yarn.lock -------------------------------------------------------------------------------- /screenshots/add companies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/screenshots/add companies.png -------------------------------------------------------------------------------- /screenshots/edit companies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/screenshots/edit companies.png -------------------------------------------------------------------------------- /screenshots/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/screenshots/login.png -------------------------------------------------------------------------------- /screenshots/sidemenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/screenshots/sidemenu.png -------------------------------------------------------------------------------- /screenshots/view companies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/screenshots/view companies.png -------------------------------------------------------------------------------- /screenshots/view companies:employees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tosinbot/mini-crm/HEAD/screenshots/view companies:employees.png --------------------------------------------------------------------------------