Please how to connect my laravel api project with my vuejs front project?

|
Midelman 2021-01-26 00:00:55
Please how to connect my laravel api project with my vuejs front project ?
Siberfx 2021-01-26 00:03:18
Midelman 2021-01-26 00:00:55
Please how to connect my laravel api project with my vuejs front project ?

api. and axios

Midelman 2021-01-26 00:04:59
Siberfx 2021-01-26 00:03:18
api. and axios

I nkow but how Can i vinnect the tow differents projects

Midelman 2021-01-26 00:05:16
In tow differents folders?
Siberfx 2021-01-26 00:07:51
you can do it even if you want 2 different domains. but its not a fact 2 different folders. you can move your vue files into laravel app /resources/js folder. then read some documentations how to merge vue project with a laravel app.
Midelman 2021-01-26 00:13:20
Ok thanks
RahiMSuleymaN 2021-01-26 00:24:47
laravel_discuss-67812.jpg

RahiMSuleymaN 2021-01-26 00:25:29
How to get from status_relation status_name?
RahiMSuleymaN 2021-01-26 00:25:56
$idea[0] give me the data
segungreat 2021-01-26 02:11:26
RahiMSuleymaN 2021-01-26 00:25:56
$idea[0] give me the data

Have u tried converting it to array and then [status_relation][status_name]

lemyskaman 2021-01-26 02:12:04
Guys hi, ive came out with a class as a package to generate random loremp ipsum text (very handy on database seeder for tests). Is not currently using any generator service api from the internet.

Hope you find it usefull:
https://github.com/lemyskaman/lorem-ipsum

lemyskaman/lorem-ipsumGitHub
A Lorem Ipsum genereator for php and laravel. Contribute to lemyskaman/lorem-ipsum development by creating an account on GitHub.
RahiMSuleymaN 2021-01-26 02:12:46
segungreat 2021-01-26 02:11:26
Have u tried converting it to array and then [status_relation][status_name]

I have solved with loop already

RahiMSuleymaN 2021-01-26 02:13:50
laravel_discuss-67819.jpg

RahiMSuleymaN 2021-01-26 02:14:08
laravel_discuss-67820.jpg

RahiMSuleymaN 2021-01-26 02:14:39
I can t use attachRelation in blade
RahiMSuleymaN 2021-01-26 02:15:13
laravel_discuss-67822.jpg

RahiMSuleymaN 2021-01-26 02:16:00
I use with(‘attachRelation’)
RahiMSuleymaN 2021-01-26 02:16:33
RahiMSuleymaN 2021-01-26 02:15:13

But I know it isn t eager loading

RahiMSuleymaN 2021-01-26 02:18:21
How can I use with(‘attachRelation’) in blade?
DesolatorMagno 2021-01-26 03:11:07
RahiMSuleymaN 2021-01-26 02:14:39
I can t use attachRelation in blade

What you mean with ‘I can’t use it’? are you trying to make it harder for anyone to help you? because you are doing a good job.

RahiMSuleymaN 2021-01-26 03:20:58
laravel_discuss-67827.jpg

segungreat 2021-01-26 03:21:31
RahiMSuleymaN 2021-01-26 02:16:00
I use with(‘attachRelation’)

You’re already eager loading you should be able to get the relation from $idea

RahiMSuleymaN 2021-01-26 03:21:47
in my opinion I use it wrong
segungreat 2021-01-26 03:22:30
RahiMSuleymaN 2021-01-26 03:20:58

I don’t understand this

RahiMSuleymaN 2021-01-26 03:22:42
but I remove with(‘attachRelation’) it works again
RahiMSuleymaN 2021-01-26 03:23:14
laravel_discuss-67832.jpg

RahiMSuleymaN 2021-01-26 03:23:25
structure is so
segungreat 2021-01-26 03:24:06
RahiMSuleymaN 2021-01-26 03:22:42
but I remove with(‘attachRelation’) it works again

Did u define the method and it relationship in the idea model

RahiMSuleymaN 2021-01-26 03:24:35
RahiMSuleymaN 2021-01-26 03:22:42
but I remove with(‘attachRelation’) it works again

yes

RahiMSuleymaN 2021-01-26 03:24:46
segungreat 2021-01-26 03:24:06
Did u define the method and it relationship in the idea model

yes

RahiMSuleymaN 2021-01-26 03:25:05
laravel_discuss-67837.jpg

DesolatorMagno 2021-01-26 03:25:56
Why you end the name with “Relation” ?
RahiMSuleymaN 2021-01-26 03:28:16
it is a habit((
segungreat 2021-01-26 03:29:25
RahiMSuleymaN 2021-01-26 03:25:05

I don’t think you have any problem, DD the result of $idea in the controller and check the relation and let’s see

DesolatorMagno 2021-01-26 03:30:41
And remember, the name is really helpful
if you have a relationship called
User it should return a model
if it is called
Users it should return a collection of model.
|