Git Product home page Git Product logo

bottelet / daybydaycrm Goto Github PK

View Code? Open in Web Editor NEW
2.2K 141.0 755.0 18.94 MB

DaybydayCRM an open-source CRM, to help you keep track of your daily workflow.

Home Page: https://daybydaycrm.com

PHP 51.32% JavaScript 12.01% HTML 1.69% Vue 8.13% Dockerfile 0.31% Shell 0.06% SCSS 4.35% Blade 22.13%
crm laravel managaement task-manager tracking daybyday daybydaycrm crm-system crm-platform hacktoberfest

daybydaycrm's People

Contributors

agentmarine avatar alek10c avatar bloodlog avatar blueclock avatar bottelet avatar dependabot[bot] avatar edgarborras94 avatar funyug avatar jheysoon avatar jhuebel avatar jvas28 avatar k-yamasaki-zakisan avatar laravel-shift avatar marctonon avatar mefist1990 avatar rm-yakovenko avatar saleh199 avatar shehrozafzal avatar u1io avatar vitorfleite avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

daybydaycrm's Issues

Composer Install gives error

Hi I am using php version 7.0.1 but still getting this error :

Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Your requirements could not be resolved to an installable set of packages.

Problem 1
- Installation request for phpunit/php-token-stream 2.0.0 -> satisfiable by
phpunit/php-token-stream[2.0.0].
- phpunit/php-token-stream 2.0.0 requires php ^7.0 -> your PHP version (5.6.25) does not satisfy that requirement.
Problem 2
- phpunit/php-token-stream 2.0.0 requires php ^7.0 -> your PHP version (5.6.25) does not satisfy that requirement.
- phpunit/php-code-coverage 4.0.8 requires phpunit/php-token-stream ^1.4.2 || ^2.0 -> satisfiable by phpunit/php-token-stream[2.0.0].
- Installation request for phpunit/php-code-coverage 4.0.8 -> satisfiable by phpunit/php-code-coverage[4.0.8]. @Bottelet

composer install fails due to dependencies

Hello,

Can you please provide some more instructions how to install the project?
I followed your instructions but the composer install command fails with about 39 problems.
It looks like the php version does not satisfy the version required. I did not install php beforehand and I am not able to yum update php...

composer install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file

404 not found

hello,when i try to deploy this project to vm (linux-nginx-mysql) ,the url redirect to a.b.c.d:81/login and shows 404 not found,can u help me

Problem when using command: `php artisan migrate -seed`

When goto step:

php artisan migrate -seed

Will show error like this.

←[37;41m                                                          ←[39;49m
←[37;41m  [Symfony\Component\Console\Exception\RuntimeException]  ←[39;49m
←[37;41m  The "-s" option does not exist.                         ←[39;49m
←[37;41m                                                          ←[39;49m

I tried php artisan list and this show:

[←[33mUsage:←[39m
  help [options] [--] [<command_name>]

←[33mArguments:←[39m
  ←[32mcommand←[39m               The command to execute
  ←[32mcommand_name←[39m          The command name←[33m [default: "help"]←[39m

←[33mOptions:←[39m
  ←[32m    --format=FORMAT←[39m   The output format (txt, xml, json, or md)←[33m [d
efault: "txt"]←[39m
  ←[32m    --raw←[39m             To output raw command help
  ←[32m-h, --help←[39m            Display this help message
  ←[32m-q, --quiet←[39m           Do not output any message
  ←[32m-V, --version←[39m         Display this application version
  ←[32m    --ansi←[39m            Force ANSI output
  ←[32m    --no-ansi←[39m         Disable ANSI output
  ←[32m-n, --no-interaction←[39m  Do not ask any interactive question
  ←[32m    --env[=ENV]←[39m       The environment the command should run under.
  ←[32m-v|vv|vvv, --verbose←[39m  Increase the verbosity of messages: 1 for normal
output, 2 for more verbose output and 3 for debug

←[33mHelp:←[39m
 The ←[32mhelp←[39m command displays help for a given command:

   ←[32mphp artisan help list←[39m
](url)

Seem artisan have problem. I'm do with your guide step by step.

Inovoice system

Create an invoice with TimeTask, see the invoice, set status if they are sent if payments are received, see the total amount for each customer etc.

Modularization of features

Hi. I see a lot of potential with this project. I'm even considering using it as my own CRM.

With these potentials, it might become a bloated app in the future. Which is why I want to propose to add settings on what modules are enabled to make the app flexible to use for both corporate and small businesses.

For me, I don't need the "Departments" thing because I work alone. Let alone the "Office Meeting" feature that is planned for the future since I don't have a team to have an office meeting (client meeting would be nice tho).

Any plans going this "modular" path?

Error display contact_date of Lead

In function leadData of UsersController:
->editColumn('contact_date', function ($leads) { return $leads->created_at ? with(new Carbon($leads->created_at)) ->format('d/m/Y') : ''; })

should be:
->editColumn('contact_date', function ($leads) { return $leads->contact_date? with(new Carbon($leads->contact_date)) ->format('d/m/Y') : ''; })

Request validation

Use Request class injection for validation instead of newing up a new validator in every post method.

Installation error

When i try to install
composer install
This is the error
Your requirements could not be resolved to an installable set of packages

Why?

Thanks

work number and personal number

work number and personal number( user table) are both defined as integer, that would cause the numbers starting with 0 can't be stored as well as displayed correctly.
Defining them as string will be better, I think.
Thank you.

Unit test

Create unit tests for all the functions, and pages etc.

Error running migrations on [Docker]

Hi @Bottelet

Not sure what is the reason, I just download the Docker containers and got this error.

`root@88e0545fb571:/var/www/html# php artisan migrate --seed

[Symfony\Component\Debug\Exception\FatalThrowableError]
Parse error: syntax error, unexpected '20161104200855' (T_LNUMBER), expecting identifier (T_STRING)

root@88e0545fb571:/var/www/html#`

Thanks

providing a package

Are you planning on providing a package to integrate this crm in existing projects?

Calendar for data field

Good morning.
First of all congratulations on the wonderful work.
As an evolutionary change it would be interesting to use the calendar for the given fields.

Greetings

Repository/Interface pattern

Controllers should only receive requests and return responses. Make use of Repository/Interface pattern using Laravels IoC.

Round 1: Suggestions

You can use custom middleware for these checks: $canCreateUser = Auth::user()->canDo('user.create');
Have a look at the repository pattern
Use pjax (loading views) and ajax (posts,gets etc.)
Use custom requests for validation (has an authorize method for canDo('user.create'); as well)
Store paths in a config file
You don't need to prefix foreign keys with fk, it's assumed to be a foreign key if it ends with _id.
Be careful with onDelete('cascade')
You can use faker to generate random data.
You don't need to repeat the same fields on both your create and edit views. It is possible to combine it into one. (Think maintainability: DRY)
Your display of errors is also repeated: @if($errors->any())

Demo doesn't working

Hi,
Demo site ec2-34-248-108-133.eu-west-1.compute.amazonaws.com doesn't work, is there a chance to bring any demo to live?

Cheers,
karamucho

Adding Task Error

When attempting to add a new task, got this error:

FatalThrowableError in TaskRepository.php line 52:
Non-static method Fenos\Notifynder\Notifynder::category() cannot be called statically
in TaskRepository.php line 52
at TaskRepository->create(array('_token' => 'n2tlkrb9jbNPPh6aw1T9sTQ3Yks0Vo6ijVPxZkLP', 'title' => 'asdf', 'description' => 'asdf', 'deadline' => '2016-09-07', 'status' => '1', 'fk_user_id_assign' => '1', 'fk_client_id' => '1', 'fk_user_id_created' => '1')) in TasksController.php line 105
at TasksController->store(object(StoreTaskRequest))
at call_user_func_array(array(object(TasksController), 'store'), array(object(StoreTaskRequest))) in Controller.php line 55
at Controller->callAction('store', array(object(StoreTaskRequest))) in ControllerDispatcher.php line 44
at ControllerDispatcher->dispatch(object(Route), object(TasksController), 'store') in Route.php line 189
at Route->runController() in Route.php line 144
at Route->run(object(Request)) in Router.php line 642
at Router->Illuminate\Routing{closure}(object(Request)) in Pipeline.php line 53
at Pipeline->Illuminate\Routing{closure}(object(Request)) in SubstituteBindings.php line 41
at SubstituteBindings->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in Authenticate.php line 43
at Authenticate->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in LogLastUserActivity.php line 24
at LogLastUserActivity->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in VerifyCsrfToken.php line 64
at VerifyCsrfToken->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in ShareErrorsFromSession.php line 49
at ShareErrorsFromSession->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in StartSession.php line 64
at StartSession->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in AddQueuedCookiesToResponse.php line 37
at AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in EncryptCookies.php line 59
at EncryptCookies->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in Pipeline.php line 104
at Pipeline->then(object(Closure)) in Router.php line 644
at Router->runRouteWithinStack(object(Route), object(Request)) in Router.php line 618
at Router->dispatchToRoute(object(Request)) in Router.php line 596
at Router->dispatch(object(Request)) in Kernel.php line 267
at Kernel->Illuminate\Foundation\Http{closure}(object(Request)) in Pipeline.php line 53
at Pipeline->Illuminate\Routing{closure}(object(Request)) in CheckForMaintenanceMode.php line 46
at CheckForMaintenanceMode->handle(object(Request), object(Closure)) in Pipeline.php line 137
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in Pipeline.php line 104
at Pipeline->then(object(Closure)) in Kernel.php line 149
at Kernel->sendRequestThroughRouter(object(Request)) in Kernel.php line 116
at Kernel->handle(object(Request)) in index.php line 52

403 Forbidden Laragon

Hey. Just after a clean clone, composer install, php artisan migrate --seed, php artisan key:generate i get 403 Forbidden . Is this a known issue on windows?

npm -v 3.10.10 node -v 8.9.1

sudo npm install

####Homestead Vagrant box Windows 10#####

kept failing!!!!!

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules/ch
okidar/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@
1.1.3: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}
)
npm ERR! Linux 4.4.0-92-generic
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "--no-bin-lin
ks"
npm ERR! node v8.9.1
npm ERR! npm v3.10.10
npm ERR! path /home/vagrant/code/XXXXX/node_modules/.staging/webpack-0652c4e4
npm ERR! code EPERM
npm ERR! errno -1
npm ERR! syscall rename

npm ERR! Error: EPERM: operation not permitted, rename '/home/vagrant/code/XXXXX/n
ode_modules/.staging/webpack-0652c4e4' -> '/home/vagrant/code/XXXXXX/node_modules/l
aravel-elixir-webpack-official/node_modules/webpack-stream/node_modules/webpack'

npm ERR! at destStatted (/usr/local/lib/node_modules/npm/lib/install/action/
finalize.js:25:7)
npm ERR! at /usr/local/lib/node_modules/npm/node_modules/graceful-fs/polyfil
ls.js:264:29
npm ERR! at FSReqWrap.oncomplete (fs.js:152:21)
npm ERR!
npm ERR! Error: EPERM: operation not permitted, rename '/home/vagrant/code/XXXXX/n
ode_modules/.staging/webpack-0652c4e4' -> '/home/vagrant/code/XXXXX/node_modules/l
aravel-elixir-webpack-official/node_modules/webpack-stream/node_modules/webpack'

npm ERR! { Error: EPERM: operation not permitted, rename '/home/vagrant/code/XXXX/node_modules/.staging/webpack-0652c4e4' -> '/home/vagrant/code/XXXX/node_module
s/laravel-elixir-webpack-official/node_modules/webpack-stream/node_modules/webpa
ck'
npm ERR! at destStatted (/usr/local/lib/node_modules/npm/lib/install/action/
finalize.js:25:7)
npm ERR! at /usr/local/lib/node_modules/npm/node_modules/graceful-fs/polyfil
ls.js:264:29
npm ERR! at FSReqWrap.oncomplete (fs.js:152:21)
npm ERR!
npm ERR! Error: EPERM: operation not permitted, rename '/home/vagrant/code/XXXX/n
ode_modules/.staging/webpack-0652c4e4' -> '/home/vagrant/code/XXXX/node_modules/l
aravel-elixir-webpack-official/node_modules/webpack-stream/node_modules/webpack'
parent: 'webpack-stream' }
npm ERR!
npm ERR! Please try running this command again as root/Administrator.

npm ERR! Please include the following file with any support request:
npm ERR! /home/vagrant/code/XXXX/npm-debug.log

####SOLUTION####

WINDOWS 10 FIX: Git bash as Administrator into Homestead box

delete node_modules in the project

npm install

NOTE: not sure why bu "sudo" causes a lot of issues

Installation Guidelines

Hello,

Can you explain the installation process in more details.

For installation with a MySQL server running on localhost : 3306 , how to do it ?

thanks in advance.
Cheers.

add task error

I encountered a mistake when creating a task, if I did not create a client first.
qq 20170629174221

Feature search is case sensitive

Flarepoint is a very good product and I have installed and tested at least two of your release versions.
Found that the function search is case sensitive.
If it's not, this feature could be more powerful and reasonable.
Good day.

Sydwang

User tagging

Hi,

First of all I would like to thank you for this project, it looks very promising. We are thinking about to use this in one of our student committee. Only we need to do a small adjustments to make sure the its matches our operations.

I read the readme file and you mention the user tagging feature, i really like this feature. Do you by chance have any idea when you are going to implement this? It is alright if you dont know it yet. I'm just really curious :)

Thanks!

Frank

In All Department delete function not working.

Thanks for considering my requests. A little more bug. In setting/Role management/All Department /delete function doesn’t work. When I click delete it give exception error.
Image are Attached:

image

Excel Import/export

Export users, clients, tasks, and leads as XML or CSV, And be able to upload clients etc, from other XML/CSV files to Flarepoint

Slack Integration

Write to a certain slack channel when for example.

  • Lead is completed
  • Task is completed
  • New client is created

Give the user options in frontend to choose how slack should behave, whenever something happens.

\vendor\laravel\framework\src\Illuminate\Support\Facades\Facade.php on line 221 and defined

Hello ,

I have downloaded your code from https://github.com/Bottelet/Flarepoint-crm.git
->then i have created an empty database,
->renamed to .env.example to .env
->added my localhost configuration and changed the database name in .env
->then opened the command line and executed the command composer install
->then i had migrate all the tables using the command php artisan migrate --seed
->and at the end php artisan key:generate till now everything was going smooth, no errors anywhere
but when i run the application on http://localhost/Flarepoint_crm/public/

I got the below error.

Parse error: syntax error, unexpected '.', expecting '&' or variable (T_VARIABLE) in F:\wamp\www\punit\Flarepoint_crm\vendor\laravel\framework\src\Illuminate\Foundation\helpers.php on line 477

Then i opened the above file and check the line
and i found this
function event(...$args) { return app('events')->dispatch(...$args); }

Then i removed ... and i refresh the page, that error was gone but i got the new error this time like below.

Parse error: syntax error, unexpected '.' in F:\wamp\www\punit\Flarepoint_crm\vendor\laravel\framework\src\Illuminate\Events\Dispatcher.php on line 334

again i opened the above file and remove the ... from the function wherever it was in the file.

then refreshed the page and again new Error.

This way i kept deleting the ... from the class files and at the end i got the error

Argument 2 passed to Illuminate\View\Compilers\BladeCompiler::directive() must be callable, none given, called in F:\wamp\www\punit\Flarepoint_crm\vendor\laravel\framework\src\Illuminate\Support\Facades\Facade.php on line 221 and defined

Class 'App\Models\roleUser' not found

Insertion of dummy data
php artisan db:seed --class=UsersDummyTableSeeder (Creates 5 extra users and are required)
change: use App\Models\roleUser on use App\Models\RoleUser ...

Create user

When i create new user I give him department but it show exception like.
The departments field is required.
Image attached:
capture

Can't install due to PDO class not found error

composer install throws:

Fatal error: Class 'PDO' not found in /home/web/web/config/database.php on line 16

php and php-cli provides this info for print_r(PDO::getAvailableDrivers());

Array ( [0] => sqlite [1] => mysql [2] => pgsql ) 

phpinfo shows that pdo is enabled.
PHP Version 5.6.16

What's problem here?

Error in image selection

Dear: When i select the image to create New user it give Exception error:

images are attached:
12345
1233

Error display Deadline of Task

In TasksController:
->editColumn('deadline', function ($tasks) { return $tasks->created_at ? with(new Carbon($tasks->created_at)) ->format('d/m/Y') : ''; })
should be:
->editColumn('deadline', function ($tasks) { return $tasks->deadline? with(new Carbon($tasks->deadline)) ->format('d/m/Y') : ''; })
And the same in function taskData() of UsersController.

Unable to add a task after installing the package

After installing flarepoint-crm and adding an user as admin, I try to add a task but i am getting the following error:

SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`crm`.`tasks`, CONSTRAINT `tasks_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`))

Class 'App\Department' not found on install

Went through installation procedures and had some errors as shown below. At the very end I posted my error log as well when attempting to access the CRM.

When running this during setup:

 php artisan migrate --seed

I received the following issues:

Seeded: IndustriesTableSeeder PHP Fatal error: Class 'App\Department' not found in /Applications/MAMP/htdocs/git/laravel/flarepoint/database/seeds/DepartmentsTableSeeder.php on line 16 PHP Stack trace: PHP 1. {main}() /Applications/MAMP/htdocs/git/laravel/flarepoint/artisan:0 PHP 2. Illuminate\Foundation\Console\Kernel->handle() /Applications/MAMP/htdocs/git/laravel/flarepoint/artisan:36 PHP 3. Symfony\Component\Console\Application->run() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php:122 PHP 4. Symfony\Component\Console\Application->doRun() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/symfony/console/Application.php:117 PHP 5. Symfony\Component\Console\Application->doRunCommand() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/symfony/console/Application.php:186 PHP 6. Illuminate\Console\Command->run() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/symfony/console/Application.php:818 PHP 7. Symfony\Component\Console\Command\Command->run() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Console/Command.php:155 PHP 8. Illuminate\Console\Command->execute() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/symfony/console/Command/Command.php:256 PHP 9. Illuminate\Container\Container->call() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Console/Command.php:169 PHP 10. call_user_func_array:{/Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Container/Container.php:507}() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Container/Container.php:507 PHP 11. Illuminate\Database\Console\Migrations\MigrateCommand->fire() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Container/Container.php:507 PHP 12. Illuminate\Console\Command->call() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Database/Console/Migrations/MigrateCommand.php:79 PHP 13. Illuminate\Console\Command->run() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Console/Command.php:185 PHP 14. Symfony\Component\Console\Command\Command->run() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Console/Command.php:155 PHP 15. Illuminate\Console\Command->execute() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/symfony/console/Command/Command.php:256 PHP 16. Illuminate\Container\Container->call() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Console/Command.php:169 PHP 17. call_user_func_array:{/Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Container/Container.php:507}() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Container/Container.php:507 PHP 18. Illuminate\Database\Console\Seeds\SeedCommand->fire() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Container/Container.php:507 PHP 19. Illuminate\Database\Eloquent\Model::unguarded() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php:64 PHP 20. Illuminate\Database\Console\Seeds\SeedCommand->Illuminate\Database\Console\Seeds\{closure}() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Model.php:2279 PHP 21. DatabaseSeeder->run() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Database/Console/Seeds/SeedCommand.php:63 PHP 22. Illuminate\Database\Seeder->call() /Applications/MAMP/htdocs/git/laravel/flarepoint/database/seeds/DatabaseSeeder.php:16 PHP 23. DepartmentsTableSeeder->run() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Database/Seeder.php:39

 [Symfony\Component\Debug\Exception\FatalErrorException]  Class 'App\Department' not found      

When attempting to dummy data commands, also received an error for:

 php artisan db:seed --class=UsersDummyTableSeeder 

[Illuminate\Database\QueryException] SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (flarepoint_crm.role_user, C ONSTRAINTrole_user_role_id_foreignFOREIGN KEY (role_id) REFERENCESroles(id) ON DELETE CASCADE ON UPDATE CASCADE) (SQL: insert intorole_us
er(role_id,user_id`) values (1, 2))

[PDOException]
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (flarepoint_crm.role_user, C
ONSTRAINT role_user_role_id_foreign FOREIGN KEY (role_id) REFERENCES roles (id) ON DELETE CASCADE ON UPDATE CASCADE)`

Error Log

[31-Aug-2016 21:51:11 America/Los_Angeles] PHP Parse error: syntax error, unexpected '.', expecting '&' or variable (T_VARIABLE) in /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/laravel/framework/src/Illuminate/Foundation/helpers.php on line 475 [31-Aug-2016 21:51:11 America/Los_Angeles] PHP Stack trace: [31-Aug-2016 21:51:11 America/Los_Angeles] PHP 1. {main}() /Applications/MAMP/htdocs/git/laravel/flarepoint/public/index.php:0 [31-Aug-2016 21:51:11 America/Los_Angeles] PHP 2. require() /Applications/MAMP/htdocs/git/laravel/flarepoint/public/index.php:21 [31-Aug-2016 21:51:11 America/Los_Angeles] PHP 3. require() /Applications/MAMP/htdocs/git/laravel/flarepoint/bootstrap/autoload.php:17 [31-Aug-2016 21:51:11 America/Los_Angeles] PHP 4. ComposerAutoloaderInite09a2c4a68b74041a4ebca4fce5bff8c::getLoader() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/autoload.php:7 [31-Aug-2016 21:51:11 America/Los_Angeles] PHP 5. composerRequiree09a2c4a68b74041a4ebca4fce5bff8c() /Applications/MAMP/htdocs/git/laravel/flarepoint/vendor/composer/autoload_real.php:56

Code error of "This cache store does not support tagging "

Hello Bottelet
I find the your code in github and try the install my xampp server in windows10.
But I can't install the your code.
First login window is shown.
But after login by the user:: "[email protected]" pass:: "admin123" , I see the 3 ErrorException.
1.This cache store does not support tagging. (View: D:\xampp\htdocs\Flarepoint-crm-develop\resources\views\layouts\master.blade.php) (View: D:\xampp\htdocs\Flarepoint-crm-develop\resources\views\layouts\master.blade.php)
2.This cache store does not support tagging. (View: D:\xampp\htdocs\Flarepoint-crm-develop\resources\views\layouts\master.blade.php)
3.This cache store does not support tagging.
Why this event occur?
How to see the your dashboard part?
my php version is the 5.6.14 and way(composer install --no-dev) use
Do you help me?

Meeting room booking

Be able to insert the meeting rooms an office has, in settings somewhere, and then book the rooms for different meetings, with an easy overview of use. I'm thinking it should be able to:

Choose attendees for the meeting.
Date and time
If it's in-house or out-house and if in-house choose which meeting room they wanna book.
And the standard title, and description.

Add RTL support

Hello

I have been searching for something like this for a long time.

Is there a plan to support RTL languages? I am here to help if you wish with Arabic in design & translation.

Thanks :) 👍

After manual install TokenMismatch Error in compiled.php on line 3164

TokenMismatchException in compiled.php line 3164:
in compiled.php line 3164
at VerifyCsrfToken->handle(object(Request), object(Closure)) in compiled.php line 9873
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in compiled.php line 13490
at ShareErrorsFromSession->handle(object(Request), object(Closure)) in compiled.php line 9873
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in compiled.php line 11913
at StartSession->handle(object(Request), object(Closure)) in compiled.php line 9873
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in compiled.php line 13236
at AddQueuedCookiesToResponse->handle(object(Request), object(Closure)) in compiled.php line 9873
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in compiled.php line 13173
at EncryptCookies->handle(object(Request), object(Closure)) in compiled.php line 9873
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in compiled.php line 9858
at Pipeline->then(object(Closure)) in compiled.php line 8164
at Router->runRouteWithinStack(object(Route), object(Request)) in compiled.php line 8155
at Router->dispatchToRoute(object(Request)) in compiled.php line 8146
at Router->dispatch(object(Request)) in compiled.php line 2472
at Kernel->Illuminate\Foundation\Http{closure}(object(Request)) in Pipeline.php line 53
at Pipeline->Illuminate\Routing{closure}(object(Request)) in compiled.php line 3224
at CheckForMaintenanceMode->handle(object(Request), object(Closure)) in compiled.php line 9873
at Pipeline->Illuminate\Pipeline{closure}(object(Request)) in Pipeline.php line 33
at Pipeline->Illuminate\Routing{closure}(object(Request)) in compiled.php line 9858
at Pipeline->then(object(Closure)) in compiled.php line 2416
at Kernel->sendRequestThroughRouter(object(Request)) in compiled.php line 2400
at Kernel->handle(object(Request)) in index.php line 53
at require_once('C:\wamp.bak\www\laravel\projects\flarepoint\public\index.php') in server.php line 21

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.