← prev | next →
kalpeshpatelbyk 2019-04-12 11:58:34
Links when open in browser opens but on page it does not had any css effect
praneet81 2019-04-12 12:02:52
praneet81 2019-04-12 12:02:58
Hello all this is my response
praneet81 2019-04-12 12:03:28
But when i do this
praneet81 2019-04-12 12:03:31
praneet81 2019-04-12 12:04:02
praneet81 2019-04-12 12:04:09
praneet81 2019-04-12 12:04:02
I get this error
praneet81 2019-04-12 12:04:13
Any idea why?
2019-04-12 13:51:30
praneet81 2019-04-12 12:04:13
Any idea why?
Object of object not possible
2019-04-12 13:51:44
It is may be object array
2019-04-12 13:52:57
Hi I have an doubt in laravel API controller
2019-04-12 13:59:03
In API return inside function not a main function?
2019-04-12 13:59:45
How to fix this issue?
senhorY 2019-04-12 18:01:31
Hey, do you guys know how to parse a json object into html? The json object looks like this:
{
“type”:”doc”,
“content”:[
{
“type”:”paragraph”,
“content”:[
{
“type”:”text”,
“text”:”This is an HTML paragraph.”
}
]
},
{
“type”:”paragraph”,
“content”:[
{
“type”:”text”,
“text”:”And another paragraph with some ”
},
{
“type”:”text”,
“marks”:[
{
“type”:”bold”
}
],
“text”:”strong”
},
{
“type”:”text”,
“text”:” tags. ”
}
]
},
{
“type”:”paragraph”
}
]
}
danialld 2019-04-12 18:17:06
I wanna make own custom endpoint s3 ( I have 2 projects )
1) s3 is parsing as XML but I want to response as Json
2) I cant see the response for debug , its boolean
3) how can i see full api requests list , that s3 is sending ?
danialld 2019-04-12 18:59:22
danialld 2019-04-12 18:17:06
I wanna make own custom endpoint s3 ( I have 2 projects )
1) s3 is parsing as XML but I want to response as Json
2) I cant see the response for debug , its boolean
3) how can i see full api requests list , that s3 is sending ?
How can I authorize s3 on my second host ?
ErgashevXurshid 2019-04-12 19:08:05
Hi everyone. Is there fully tutorial or project about Yandex and Laravel Vue?
civilArt034 2019-04-12 21:01:42
<link href=”{{ URL::asset(‘css/style.css’) }}” rel=”stylesheet”>
this my code for css
but dosent work
why ?
Testuserid 2019-04-12 21:02:59
civilArt034 2019-04-12 21:01:42
<link href=”{{ URL::asset(‘css/style.css’) }}” rel=”stylesheet”>
this my code for css
but dosent work
why ?
Try by removing keyword URL
civilArt034 2019-04-12 21:04:00
Testuserid 2019-04-12 21:02:59
Try by removing keyword URL
<link href=”{{ asset(‘css/style.css’) }}” rel=”stylesheet”>
Testuserid 2019-04-12 21:04:18
Yes
civilArt034 2019-04-12 21:05:06
no
error is work now
Testuserid 2019-04-12 21:10:22
civilArt034 2019-04-12 21:05:06
no
error is work now
Try this:
<link href=url(“{{ asset(‘css/style.css’) }}”) rel=”stylesheet”>
civilArt034 2019-04-12 21:20:36
Testuserid 2019-04-12 21:10:22
Try this:
<link href=url(“{{ asset(‘css/style.css’) }}”) rel=”stylesheet”>
no ,
complete has error
Testuserid 2019-04-12 21:23:21
Can you send your error?
civilArt034 2019-04-12 21:26:14
not code error
but
logo color and …. arent it themself place
civilArt034 2019-04-12 21:30:28
Testuserid 2019-04-12 21:23:21
Can you send your error?

this is my menu
civilArt034 2019-04-12 21:34:26

and this is in top page
sarr_zx 2019-04-12 22:16:11
Gd evening everyone.. i have problem with database when i remove any column from migration files then the system can’t connect to DB can u help me?
loveycom 2019-04-12 22:26:30
sarr_zx 2019-04-12 22:16:11
Gd evening everyone.. i have problem with database when i remove any column from migration files then the system can’t connect to DB can u help me?
This is not clear. Changes are expected to be made in migration files and not on the db itself. However, kindly explain better the problem.
sarr_zx 2019-04-12 22:28:34
🙆♀️sorry
sarr_zx 2019-04-12 22:30:10
I changed in both db and migrate but then there’s problems when i wanna login in any user💔 or when i want to signup it doesn’t save in db
praneet81 2019-04-12 22:54:10
sarr_zx 2019-04-12 22:16:11
Gd evening everyone.. i have problem with database when i remove any column from migration files then the system can’t connect to DB can u help me?
Whenever you make any change in your migration files
praneet81 2019-04-12 22:54:25
Make sure to do php artisan migrate:fresh
praneet81 2019-04-12 22:54:43
Please note this will remove all the previous datas you had on your database
kalpeshpatelbyk 2019-04-12 23:31:47
sarr_zx 2019-04-12 22:16:11
Gd evening everyone.. i have problem with database when i remove any column from migration files then the system can’t connect to DB can u help me?
Use refresh command php artisan migration:refresh
T_r_a_p_s_o_u_l 2019-04-13 04:02:40
mrhalil 2019-04-12 10:06:13
Hey guys, ı have some question for laravel/passport can you help me?
I’m building rest API server with laravel, we have some first-party (provided by us) applications like vue.js (frontend) and flutter (mobile).
We don’t need to thirty-part app authentication should we use laravel/passport?
For my apps, should ı use password access client or personal access clients?
İn password access client, ı must store client-id and client-secret on the user-side (this is not safe)
İf ı use personal access tokens, ı can’t set the lifetime easily.
Can laravel be used with flutter
EEEN1993 2019-04-13 06:46:13
T_r_a_p_s_o_u_l 2019-04-13 04:02:40
Can laravel be used with flutter
Yes
T_r_a_p_s_o_u_l 2019-04-13 07:28:46
EEEN1993 2019-04-13 06:46:13
Yes
cool
loveycom 2019-04-13 12:56:37
sarr_zx 2019-04-12 22:30:10
I changed in both db and migrate but then there’s problems when i wanna login in any user💔 or when i want to signup it doesn’t save in db
OK. Run migration again with refresh. Also you can check log for errors or install telescope if you are using laravel 5.7+
Marvixino 2019-04-13 21:38:59
which is a better approach, make API which serves frontend, backend, and mobile app, or to make frontend and backend normally, then make mobile API?
kalpeshpatelbyk 2019-04-13 21:51:28
Testuserid 2019-04-12 21:10:22
Try this:
<link href=url(“{{ asset(‘css/style.css’) }}”) rel=”stylesheet”>
Which version of laravel u are using
loveycom 2019-04-14 09:09:42
Marvixino 2019-04-13 21:38:59
which is a better approach, make API which serves frontend, backend, and mobile app, or to make frontend and backend normally, then make mobile API?
If you are using laravel, I don’t see any reason to make api to serve backend because you already have access to the files (controllers). All you have to do is define your routes in web and api. The web will serve backend, api will serve mobile and if there is need for another frontend other than the “backend” (cos your current backend, I believe is the web front-end), then let api serve it or mix it up (api, web).
Marvixino 2019-04-14 09:25:35
loveycom 2019-04-14 09:09:42
If you are using laravel, I don’t see any reason to make api to serve backend because you already have access to the files (controllers). All you have to do is define your routes in web and api. The web will serve backend, api will serve mobile and if there is need for another frontend other than the “backend” (cos your current backend, I believe is the web front-end), then let api serve it or mix it up (api, web).
Thanks, but I forget to say that I’m going to use Vue
loveycom 2019-04-14 09:55:55
Marvixino 2019-04-14 09:25:35
Thanks, but I forget to say that I’m going to use Vue
Since you are using vue, api will serve all
Testuserid 2019-04-14 12:23:26
kalpeshpatelbyk 2019-04-13 21:51:28
Which version of laravel u are using
5.7
2019-04-14 12:44:46
what is the error Route [show] not defined. (View: C:UsersIT GhazniDesktopworkoutresourcesviewsshow.blade.php)
Leetump 2019-04-14 12:45:54
I think you not declare id
Leetump 2019-04-14 12:46:15
Ok show your controller code
← prev | next →