← prev | next →
jung_doeng 2020-09-30 16:38:51
your welcome
Prem Soni 2020-09-30 16:38:57
Here method name means our controller method name
jung_doeng 2020-09-30 16:39:33
Prem Soni 2020-09-30 16:38:57
Here method name means our controller method name
actually yes
Prem Soni 2020-09-30 16:39:38
Ok
Prem Soni 2020-09-30 16:43:00
Not working
Prem Soni 2020-09-30 16:43:21
Actually I want to link my about page to my dashboard
Vidya Arunkumar 2020-09-30 16:44:41
Vidya Arunkumar 2020-09-30 16:45:01
Vidya Arunkumar 2020-09-30 16:44:41
Still I’m getting error please help me
Prem Soni 2020-09-30 16:45:22
What you pass in action field
jung_doeng 2020-09-30 16:45:43
Prem Soni 2020-09-30 16:43:21
Actually I want to link my about page to my dashboard
what method you want to do?
Vidya Arunkumar 2020-09-30 16:46:05
iamaeshar 2020-09-30 16:46:10

Before I used laravel 8, but now i am using laravel 6. When i try to Install passport in my laravel 6 app.
I got this error ?
Vidya Arunkumar 2020-09-30 16:46:28
Vidya Arunkumar 2020-09-30 16:46:05
.blade.php path
jung_doeng 2020-09-30 16:46:29
jung_doeng 2020-09-30 16:45:43
what method you want to do?
if you want to update, must be add patch methos i think
Prem Soni 2020-09-30 16:46:42
I want to link about page in dashboard
Prem Soni 2020-09-30 16:46:56
I made a about controller
Prem Soni 2020-09-30 16:47:20
And method index
jung_doeng 2020-09-30 16:47:48
show your controller, and your web.php
Prem Soni 2020-09-30 16:48:02
Ok
Prem Soni 2020-09-30 16:48:29
jung_doeng 2020-09-30 16:48:29
and your views
Prem Soni 2020-09-30 16:48:39
Web
Prem Soni 2020-09-30 16:49:18
Prem Soni 2020-09-30 16:49:29
Controller
Prem Soni 2020-09-30 16:50:03
Prem Soni 2020-09-30 16:50:14
Views
iamaeshar 2020-09-30 16:50:15
iamaeshar 2020-09-30 16:46:10
Before I used laravel 8, but now i am using laravel 6. When i try to Install passport in my laravel 6 app. I got this error ?
Please help me with this.
Prem Soni 2020-09-30 16:50:27
Can anyone help me?
Prem Soni 2020-09-30 16:50:47
jung_doeng 2020-09-30 16:48:29
and your views
Check it
jung_doeng 2020-09-30 16:52:47
Prem Soni 2020-09-30 16:50:47
Check it
wait
Prem Soni 2020-09-30 16:53:18
Ok
jung_doeng 2020-09-30 16:55:08
first think you must be include your view in one folder,
jung_doeng 2020-09-30 16:55:21
jung_doeng 2020-09-30 16:55:08
first think you must be include your view in one folder,
to manage you view,
Prem Soni 2020-09-30 16:55:34
Ok
jung_doeng 2020-09-30 16:55:59
example in view
namefolder.namefileblade
jung_doeng 2020-09-30 17:00:24
in view
.
<{{route(‘nameFolder.index’)}}>
.
in controler
.
return view(‘yourFoldernameview.yourfilenameblade’);
.
in web, you can change o make eassy like this
.
Route::resource(‘yourlink’, ‘yourcontrollerName’);
iamaeshar 2020-09-30 17:03:57
GistOf 2020-09-30 17:04:07
iamaeshar 2020-09-30 16:50:15
Please help me with this.
You’re trying to use the latest Passport on an ancient Laravel. Try using an older version of Passport . Maybe version 8
iamaeshar 2020-09-30 17:04:29
Ok
iamaeshar 2020-09-30 17:04:41
GistOf 2020-09-30 17:04:07
You’re trying to use the latest Passport on an ancient Laravel. Try using an older version of Passport . Maybe version 8
How to do that?
GistOf 2020-09-30 17:05:21
composer require laravel/passport:8.0.0
iamaeshar 2020-09-30 17:05:21
GistOf 2020-09-30 17:04:07
You’re trying to use the latest Passport on an ancient Laravel. Try using an older version of Passport . Maybe version 8
Composer require laravel/passport “8.0.*”
Samira_Fasahat 2020-09-30 17:10:14
Hello every one.
I want to use order by with whereHas.
Is this possible? If so, please help me. How can I do that?
Service::with(array(‘serviceMetas’ => function($query){
$query->where(‘step’, ‘is_recommended’)->orderBy(‘created_at’,’ASC’);
}))->get();
mhd_arffnn 2020-09-30 18:06:25
guys is it possible to have controller outside of App directory?
FairInaction 2020-09-30 18:41:03
mhd_arffnn 2020-09-30 18:06:25
guys is it possible to have controller outside of App directory?
I guess you can, but you would need to update composer.json. look into existing entry for App namespace and make changes accordingly.
Don’t forget to composer dump-autoload
Gourav_12345 2020-09-30 18:41:37
How to store session in database
mhd_arffnn 2020-09-30 18:42:53
FairInaction 2020-09-30 18:41:03
I guess you can, but you would need to update composer.json. look into existing entry for App namespace and make changes accordingly.
Don’t forget to composer dump-autoload
is there any circumstance/drawback if the controller was outside of App directory
FairInaction 2020-09-30 18:43:23
Don’t think so. May I know reason why you want to move it out of app?
mhd_arffnn 2020-09-30 18:44:48
FairInaction 2020-09-30 18:43:23
Don’t think so. May I know reason why you want to move it out of app?
i try to implement domain driven design
mhd_arffnn 2020-09-30 18:45:24
https://github.com/oliverlundquist/laravel-ddd-bowling-alley
GitHub – oliverlundquist/laravel-ddd-bowling-alley: Repository for a blog post i wrote. –
GitHubRepository for a blog post i wrote. Contribute to oliverlundquist/laravel-ddd-bowling-alley development by creating an account on GitHub.
← prev | next →