← prev | next →
Ravi Shanker 2019-03-06 19:20:34
Did that solve your issues?
sergey_muc 2019-03-06 19:21:41
Ravi Shanker 2019-03-06 19:14:10
Try changing php version
It is not a php issue
sergey_muc 2019-03-06 19:22:03
error message says it’s an SQL syntax error
Ravi Shanker 2019-03-06 19:22:38
Ok. I had a similar issue and changing php version worked. Maybe there is something else that did the trick
Leetump 2019-03-06 19:22:53
Wait
Leetump 2019-03-06 19:23:00
I working
Ravi Shanker 2019-03-06 19:23:21
True, but php version compatibility also comes into play, I thought
sergey_muc 2019-03-06 19:23:33
It could be related to update MySQL to 5.7 version, as json column type was introduced since 5.7
Ravi Shanker 2019-03-06 19:23:48
Restarted the server after changing php version
Ravi Shanker 2019-03-06 19:23:53
Ok
sergey_muc 2019-03-06 19:24:15
Ravi Shanker 2019-03-06 19:23:21
True, but php version compatibility also comes into play, I thought
updating php version will not fix sql error 😅
Ravi Shanker 2019-03-06 19:25:00
But it worked for the guy who posted the issue as mentioned in the above comment
Ravi Shanker 2019-03-06 19:25:32
I am not a pro but ….
Ravi Shanker 2019-03-06 19:26:03
Tricky stuff as we see that…😊
Ravi Shanker 2019-03-06 19:27:26
Why not check by reproducing the error by switching to lower php version and vice versa
Ravi Shanker 2019-03-06 19:27:57
May be we can find some logic out with SQL error like that
sergey_muc 2019-03-06 19:33:05
Because it is mysql issue. Current installed version of mysql does not support json column type. Should be updated to Mysql 5.7
sergey_muc 2019-03-06 19:33:18
Similar case discribed here: https://laracasts.com/discuss/channels/eloquent/table-json-generates-an-error-when-running-migrations
$table->json() generates an error when running migrations. –
LaracastsHello, I’ve encountered an annoying error here while trying to make a json field(mariaDB). Here’s the code public function up() { Schema::…
sergey_muc 2019-03-06 19:33:40
> You need MySQL 5.7.8+ to use the json column type.
StanleyMasinde 2019-03-06 19:45:54
sergey_muc 2019-03-06 19:33:40
> You need MySQL 5.7.8+ to use the json column type.
Yeah
StanleyMasinde 2019-03-06 19:46:42
I’ve not tested on the latest maria db 10.4 though
Ravi Shanker 2019-03-06 19:47:59
I was actually using MySQL 5.7.8, when that error popped up and issue got resolved by switching to php 7.2
StanleyMasinde 2019-03-06 19:49:03
Okay just asking has the json column worked for anyone?
Kvn_makwana 2019-03-07 01:21:21
2019-03-06 11:33:58
I am new to laravel…can you guide me how to build website using it…I need to build erp system
Check laravel doc
2019-03-07 01:21:57
Kvn_makwana 2019-03-07 01:21:21
Check laravel doc
Where ??
Kvn_makwana 2019-03-07 01:23:40
https://laravel.com/docs/5.8/installation
Laravel – The PHP Framework For Web Artisans –
LaravelLaravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
2019-03-07 01:30:54
Any site which can teach me how to build erp system in laravel?
Eskindir 2019-03-07 01:55:32
2019-03-07 01:30:54
Any site which can teach me how to build erp system in laravel?
No, and I don’t think that’s the right search statement, carefully examine what you seek in your ERP, do a proper design…then you can realize it with Laravel. You can see related laravel based solutions on github.
2019-03-07 01:56:53
Eskindir 2019-03-07 01:55:32
No, and I don’t think that’s the right search statement, carefully examine what you seek in your ERP, do a proper design…then you can realize it with Laravel. You can see related laravel based solutions on github.
Ok
Harrisdtt 2019-03-07 06:06:27

hello every one could you please help me, why i am getting this error,
Erfan1999_sh 2019-03-07 06:56:34
hello i want to use blade templates but I have this issue what should I do?
Erfan1999_sh 2019-03-07 06:56:34
ErgashevXurshid 2019-03-07 07:02:30
civilArt034 2019-03-06 14:18:03
In this page i can’t login
Why?
php artisan migrate:rollback –step=1 (or other)
Database cleared.
Then
voyager install –with-dummy
ErgashevXurshid 2019-03-07 07:03:24
ErgashevXurshid 2019-03-07 07:02:30
php artisan migrate:rollback –step=1 (or other)
Database cleared.
Then
voyager install –with-dummy
This command creat a new default admin
ErgashevXurshid 2019-03-07 07:09:59
Erfan1999_sh 2019-03-07 06:56:34
In index blade you need add @extends(‘layouts.app’)
@section(‘content’)
…
@endsection
Then run index blade
Erfan1999_sh 2019-03-07 07:12:29
Erfan1999_sh 2019-03-07 07:12:29

I did it but see …
ErgashevXurshid 2019-03-07 07:31:59
Check right path. not computer url you need local server url
2019-03-07 09:07:56
Hey devs, just published a tutorial on how to implement a weighted ranking sytem in Laravel based on the number of upvotes and downvotes.same concept used in sites like quora and stackoverflow.Feel free to ask any question or leave suggestions.check it out here https://www.talwork.net/upvotedownvote-weighted-ranking-system-in-laravel-using-bayesian-formula
Upvote/Downvote Weighted Ranking System in Laravel Using Bayesian Formula -Talwork –
www.talwork.netRecently, I was developing a Q & A application that required me to rate answers based on the number of likes and dislikes received. The plan was to en….
binumathew 2019-03-07 13:14:05
Awesome tutorial
perudragon 2019-03-07 16:22:59
2019-03-07 09:07:56
Hey devs, just published a tutorial on how to implement a weighted ranking sytem in Laravel based on the number of upvotes and downvotes.same concept used in sites like quora and stackoverflow.Feel free to ask any question or leave suggestions.check it out here https://www.talwork.net/upvotedownvote-weighted-ranking-system-in-laravel-using-bayesian-formula
Cool buddy!!!!!
Erfan1999_sh 2019-03-07 17:05:33
Erfan1999_sh 2019-03-07 07:12:29
I did it but see …
no body can’t help me?
Ravi Shanker 2019-03-07 17:10:57
Erfan1999_sh 2019-03-07 07:12:29
Check the layouts.app spelling
Erfan1999_sh 2019-03-07 17:15:45
Ravi Shanker 2019-03-07 17:10:57
Check the layouts.app spelling
it’s right
ErgashevXurshid 2019-03-07 17:40:31
Erfan1999_sh 2019-03-07 17:05:33
no body can’t help me?
Are you beginner in laravel?
Emma250 2019-03-07 21:08:08
Who can help me build a blog app
in_b_ni 2019-03-08 03:59:51
Erfan1999_sh 2019-03-07 17:05:33
no body can’t help me?
Its php file .. don’t u have to wrap it with <?php ?> ?
linux2014 2019-03-08 05:40:10
Some body leaen me simple rules users
Middleware
Erfan1999_sh 2019-03-08 05:46:08
ErgashevXurshid 2019-03-07 17:40:31
Are you beginner in laravel?
yes
Erfan1999_sh 2019-03-08 05:47:25
in_b_ni 2019-03-08 03:59:51
Its php file .. don’t u have to wrap it with <?php ?> ?
in laravel we should use it?
← prev | next →