← prev | next →
senhorY 2019-07-17 18:30:07
ldefra 2019-07-17 17:16:10
i needed profile/?parameter=value
Have you tried it? Is the parameter defined in the route?
ldefra 2019-07-17 19:05:35
senhorY 2019-07-17 18:30:07
Have you tried it? Is the parameter defined in the route?
No, i don’t want a route parameter, but a request parameter
ldefra 2019-07-17 19:07:13
I have a request with parameter and i have to pass it to redirect()
senhorY 2019-07-17 19:08:52
Then I think what you already have is what you need
joseph_ayuk 2019-07-17 20:35:54
ldefra 2019-07-17 16:55:57
i have a question: i have to pass all parameters request in a
redirect()->route(‘dashboard’);
how can i do?
You can store parameter requests in an array and then use With ()
joseph_ayuk 2019-07-17 20:38:23
Hello guys, please has any one here used the same login form to authenticate multiple users in tables? Like using the same login form for teachers, students and parents which are in different tables
ldefra 2019-07-17 20:40:36
joseph_ayuk 2019-07-17 20:35:54
You can store parameter requests in an array and then use With ()
Ok i will try, maybe i’m confused, i have remembered to have tryed
joseph_ayuk 2019-07-17 20:43:54
Yeah I think you should give it a shot.
joseph_ayuk 2019-07-17 20:44:43
joseph_ayuk 2019-07-17 20:38:23
Hello guys, please has any one here used the same login form to authenticate multiple users in tables? Like using the same login form for teachers, students and parents which are in different tables
Guys anyone here?
ldefra 2019-07-17 22:45:37
joseph_ayuk 2019-07-17 20:44:43
Guys anyone here?
Override login method
ldefra 2019-07-17 22:46:07
In the LoginController
joseph_ayuk 2019-07-17 22:47:39
Thanks Lugi, I will give it a shot
joseph_ayuk 2019-07-17 22:47:53
*Luigi
zack6849 2019-07-18 00:10:46
Harrisdtt 2019-07-17 09:14:31
composer install –no-interaction –no-progress –prefer-dist –optimize-autoloader;
Those are terminal color escape characters, what’s the issue?
loveycom 2019-07-18 00:13:07
ldefra 2019-07-17 20:40:36
Ok i will try, maybe i’m confused, i have remembered to have tryed
Maybe this will work, use laravel url() function to get the url of where you want to redirect to, and then use php urlencode to prepare the parameters, concat the two, then redirect.
loveycom 2019-07-18 00:15:32
You can call Redirect::to() or Redirect::away()
ldefra 2019-07-18 00:19:12
loveycom 2019-07-18 00:13:07
Maybe this will work, use laravel url() function to get the url of where you want to redirect to, and then use php urlencode to prepare the parameters, concat the two, then redirect.
I have done that but i would use laravel function if they are
zack6849 2019-07-18 00:26:19
zack6849 2019-07-18 00:10:46
Those are terminal color escape characters, what’s the issue?
–no-ansi should remove them, try that
zack6849 2019-07-18 00:29:18
ldefra 2019-07-17 19:07:13
I have a request with parameter and i have to pass it to redirect()
Why are you so insistent on a query param instead of path param?
zack6849 2019-07-18 00:29:30
You might find a way to do what you’re trying to do but you’re fighting the library the whole way
zack6849 2019-07-18 00:30:02
your best bet is just a stored in a path peramrter and you know I don’t know why you would need it to be a query parameter what do you need to access it from that can’t access path parameters instead?
loveycom 2019-07-18 00:33:42
It’s left to him
ldefra 2019-07-18 00:44:56
zack6849 2019-07-18 00:30:02
your best bet is just a stored in a path peramrter and you know I don’t know why you would need it to be a query parameter what do you need to access it from that can’t access path parameters instead?
I have parameters of a filter, the path call a method that decide if it neeed a redirect but i have to pass it the parameters
Kvn_makwana 2019-07-18 00:45:39
Does anyone use spatie/laravel_medialibrary ?
Kvn_makwana 2019-07-18 00:47:21
I need help in update media. Want to delete old media if exist from table and also from storage and then store new media.
zack6849 2019-07-18 00:47:58
Kvn_makwana 2019-07-18 00:47:21
I need help in update media. Want to delete old media if exist from table and also from storage and then store new media.
so you want to update a media object, delete the old one, and store a new one?
zack6849 2019-07-18 00:48:13
why is this not just a delete and create, what you’re describing sounds weird
Kvn_makwana 2019-07-18 00:48:14
zack6849 2019-07-18 00:47:58
so you want to update a media object, delete the old one, and store a new one?
Yes
Kvn_makwana 2019-07-18 00:49:25
zack6849 2019-07-18 00:48:13
why is this not just a delete and create, what you’re describing sounds weird
Right now i had done like this. But it perform 2 operation. Delete and create.
Kvn_makwana 2019-07-18 00:49:50
I want to use updateMedia().
m 2019-07-18 10:31:43
<img src=”{{ asset(‘img/{{ $usres->image }} ‘) }}” >
Has error
What is correct ?
StanleyMasinde 2019-07-18 10:33:26
m 2019-07-18 10:31:43
<img src=”{{ asset(‘img/{{ $usres->image }} ‘) }}” >
Has error
What is correct ?
What error?
StanleyMasinde 2019-07-18 10:34:46
Please share the exception message we don’t know what you want your code to do
loveycom 2019-07-18 10:36:26
m 2019-07-18 10:31:43
<img src=”{{ asset(‘img/{{ $usres->image }} ‘) }}” >
Has error
What is correct ?
What is the output of this code in your browser
MatPk 2019-07-18 10:44:19
admin.js:149 Uncaught Error: Bootstrap’s JavaScript requires jQuery
at Object../resources/js/files/bootstrap.min.js (admin.js:149)
at webpack_require (admin.js:20)
at Object../resources/js/admin.js (admin.js:131)
at webpack_require (admin.js:20)
at Object.1 (admin.js:5440)
at webpack_require (admin.js:20)
at admin.js:84
at admin.js:87
i used laramix but i have this error in the browser
m 2019-07-18 11:00:21
loveycom 2019-07-18 10:36:26
What is the output of this code in your browser
Its ok
<img src=”{{ asset(‘img/.’ $usres->image ) }}” >
loveycom 2019-07-18 11:02:50
m 2019-07-18 11:00:21
Its ok
<img src=”{{ asset(‘img/.’ $usres->image ) }}” >
Is this what it outputed in the browser? I don’t think so. asset should give you relative path to your asset. If you can’t find this in your html in browser, then something is wrong.
StanleyMasinde 2019-07-18 11:09:23
MatPk 2019-07-18 10:44:19
admin.js:149 Uncaught Error: Bootstrap’s JavaScript requires jQuery
at Object../resources/js/files/bootstrap.min.js (admin.js:149)
at webpack_require (admin.js:20)
at Object../resources/js/admin.js (admin.js:131)
at webpack_require (admin.js:20)
at Object.1 (admin.js:5440)
at webpack_require (admin.js:20)
at admin.js:84
at admin.js:87
i used laramix but i have this error in the browser
npm install jquery
acrossoffwest 2019-07-18 12:44:18
StanleyMasinde 2019-07-18 11:09:23
npm install jquery
Dont foget about –save)
StanleyMasinde 2019-07-18 12:45:15
acrossoffwest 2019-07-18 12:44:18
Dont foget about –save)
In the latest npm –save option is not required. The package info is automatically added to package.json
acrossoffwest 2019-07-18 12:46:19
StanleyMasinde 2019-07-18 12:45:15
In the latest npm –save option is not required. The package info is automatically added to package.json
Oh, I didn’t know about that, thanks for info
Manoj Mehta 2019-07-18 20:20:39
Any plug in available in laravel for responsive my site?
zack6849 2019-07-18 20:24:43
There isn’t going to be a plugin to make your site responsive, you need to write your frontend responsive from the ground up as you build it
Manoj Mehta 2019-07-18 20:26:06
zack6849 2019-07-18 20:24:43
There isn’t going to be a plugin to make your site responsive, you need to write your frontend responsive from the ground up as you build it
Ok thanks
richitorres 2019-07-18 21:34:56
how to add my local font with laravel mix?
richitorres 2019-07-18 21:35:16
put my fonts on resources? or public?
sotheast 2019-07-18 22:55:31
Please help me I installed laravel not done?
sotheast 2019-07-18 22:55:47
With xampp
sotheast 2019-07-18 22:56:27
Please send link that good to me.thank you in advance!
sotheast 2019-07-18 22:57:04
Please show me. I follow on documents but not process done.
← prev | next →