How can I setup a laravel project over IIS with HTTPS?

|
Ravi Malagi 2019-09-06 18:05:12
Tq
Leskhantos 2019-09-06 18:16:01
Ravi Malagi 2019-09-06 17:59:30
Can anyone suggest.. how to create a basic website page in laravel.. I m new to this

Just watch tutorials

Ravi Malagi 2019-09-06 18:17:14
Ok.. thanks
DesolatorMagno 2019-09-06 18:30:30
Ravi Malagi 2019-09-06 17:59:30
Can anyone suggest.. how to create a basic website page in laravel.. I m new to this

First you need knowledge in HTML + CSS + (basic) JS, them you can read and learn to use a css framework like bootstrap, you could practice the learned making a couple of non dinamic websites, after that you learn PHP, after getting some solid knowledge in PHP you can start learning about composer and MVC, if you learn about terminal usage and git it would be a good plus, after all that you can start to learn Laravel and make your first web in Laravel.

Good luck.

Ravi Malagi 2019-09-06 18:35:51
DesolatorMagno 2019-09-06 18:30:30
First you need knowledge in HTML + CSS + (basic) JS, them you can read and learn to use a css framework like bootstrap, you could practice the learned making a couple of non dinamic websites, after that you learn PHP, after getting some solid knowledge in PHP you can start learning about composer and MVC, if you learn about terminal usage and git it would be a good plus, after all that you can start to learn Laravel and make your first web in Laravel.

Good luck.

Ok.. tq..

rebory 2019-09-07 08:40:29
I have two array one is : array = [
0 => “Single Queen Bed with Pullover Sofa”
1 => “King Bed”
2 => “King Bed with Pullover Sofa”
]

array = [
0 => “10”
1 => “10”
2 => “5”
]

i want

array = [
Single Queen Bed with Pullover Sofa => 10
King Bed => 10
King Bed with Pullover Sofa => 5
]

rebory 2019-09-07 08:40:50
which method used i do that ???
ikudratov 2019-09-07 08:49:54
rebory 2019-09-07 08:40:29
I have two array one is : array = [
0 => “Single Queen Bed with Pullover Sofa”
1 => “King Bed”
2 => “King Bed with Pullover Sofa”
]

array = [
0 => “10”
1 => “10”
2 => “5”
]

i want

array = [
Single Queen Bed with Pullover Sofa => 10
King Bed => 10
King Bed with Pullover Sofa => 5
]

Just manually!

ikudratov 2019-09-07 08:52:59
$arrayOne = [
0 => “Single Queen Bed with Pullover Sofa”
1 => “King Bed”
2 => “King Bed with Pullover Sofa”
];

$arrayTwo = [
0 => “10”
1 => “10”
2 => “5”
]

$newArray = array();

for($i=0;$i<$arrayOne.length;$i++){
$newArray[$arrayOne[$]] = $arrayTwo[$i];
}
################
Like that!

rebory 2019-09-07 08:58:50
thank u
2019-09-07 11:13:42
I am happy to be here
rebory 2019-09-07 12:59:19
thanks Samuel
rebory 2019-09-07 13:05:29
laravel_discuss-12644.jpg
image
DesolatorMagno 2019-09-07 17:21:09
Did you did a console log of the data var? That way you see how you get the data in general.
rebory 2019-09-07 18:23:07
DesolatorMagno 2019-09-07 17:21:09
Did you did a console log of the data var? That way you see how you get the data in general.

I don’t know how to get im ask you brother how i get

rebory 2019-09-07 18:25:01
If i send single array in response simply i get data like last 2 lines in image when i send 2 perameters i dont know how to get
2019-09-07 23:12:45
Hi I’m brainy.. I really have a difficult task in laravel.. I’m trying to work with different databases in laravel that’s assigning the new database after the user has been authenticated to the app.. database should be assigned based on the value retrieved from the database.. I wrote this program and it worked very well on php.. but I really want to knw how to assign the database value globally.. thanks.. all suggestions will be highly appreciatedZ
2019-09-07 23:15:40
I mean globally to work perfectly on laravel framework..
2019-09-07 23:16:14
Cus it works perfectly on my native php app
leondesign 2019-09-08 00:38:32
Someone working with last version of laravel nova?
ikudratov 2019-09-08 04:58:03
Dude, It’s just trial version for now.
FEF339 2019-09-08 05:09:44
2019-09-07 23:12:45
Hi I’m brainy.. I really have a difficult task in laravel.. I’m trying to work with different databases in laravel that’s assigning the new database after the user has been authenticated to the app.. database should be assigned based on the value retrieved from the database.. I wrote this program and it worked very well on php.. but I really want to knw how to assign the database value globally.. thanks.. all suggestions will be highly appreciatedZ

https://laracasts.com/discuss/channels/tips/set-up-dynamic-database-connection-globally

vfd14889 2019-09-08 09:03:02
https://www.megaweb.ir/s/QC16Hn

آخرین مقالات دنیای وب و برنامه نویسی را در مگا وب بیابید.مگا وب
piyushcse 2019-09-08 10:30:26
2019-09-07 23:12:45
Hi I’m brainy.. I really have a difficult task in laravel.. I’m trying to work with different databases in laravel that’s assigning the new database after the user has been authenticated to the app.. database should be assigned based on the value retrieved from the database.. I wrote this program and it worked very well on php.. but I really want to knw how to assign the database value globally.. thanks.. all suggestions will be highly appreciatedZ

Codecourse.com has good courses on that

piyushcse 2019-09-08 10:31:08
It is much better than laracasts imho
XCloud1216 2019-09-08 10:42:29
Anyone know how to break when invalid pattern goin valid ?
XCloud1216 2019-09-08 10:43:20
My input still eror when im using custom invalid text, but when im deletin the custom, its work any solution ?
XCloud1216 2019-09-08 10:45:20
Pls help me
Saeedgsm 2019-09-08 10:48:44
XCloud1216 2019-09-08 10:43:20
My input still eror when im using custom invalid text, but when im deletin the custom, its work any solution ?

Show you code

XCloud1216 2019-09-08 10:49:31
laravel_discuss-12669.jpg

XCloud1216 2019-09-08 10:49:56
laravel_discuss-12670.jpg
This my pattern
XCloud1216 2019-09-08 10:50:16
Its work properly when im not using the invalid ja
XCloud1216 2019-09-08 10:50:17
Js
zack6849 2019-09-08 16:41:46
Who knows, Nova is certainly not a trail, lmao
ikudratov 2019-09-08 17:22:37
I mean, beta version
zack6849 2019-09-08 17:51:04
Nova isn’t a beta
alexanderdavii 2019-09-08 23:23:11
laravel_discuss-12679.jpg
how can i change php version on this host sharing ? i cant find “php vesrions” icon
khalinxyz 2019-09-08 23:37:18
alexanderdavii 2019-09-08 23:23:11
how can i change php version on this host sharing ? i cant find “php vesrions” icon

Ask support. Why are you asking conversation about your hosting?

alexanderdavii 2019-09-08 23:41:42
khalinxyz 2019-09-08 23:37:18
Ask support. Why are you asking conversation about your hosting?

i thought somone maybe know this problem

zack6849 2019-09-08 23:57:20
See if you can change PHP Version in cpanel
alexanderdavii 2019-09-09 00:45:28
who can help me to deploy a laravel app as sub domain , its still telling me “page not found”
senhorY 2019-09-09 18:53:46
Did anyone install laravel successfully on bitnami?
ErSoul 2019-09-09 19:18:36
Hello, how can I setup a laravel project over IIS with HTTPS?
hamid6489 2019-09-09 19:45:13
ErSoul 2019-09-09 19:18:36
Hello, how can I setup a laravel project over IIS with HTTPS?

Yes but you would have some minor issues one of your problems would be Htaccess

ErSoul 2019-09-09 20:39:13
I have configured it through http. Works fine, but it’s giving me issues with https (on the browser it hangs on loading, until it finally gives me a “Site took to long to respond” error)
NaG0Rd24Hb9sduM1 2019-09-10 07:25:37
api resource can use dependency injection ?
Amirex128 2019-09-10 07:53:41
NaG0Rd24Hb9sduM1 2019-09-10 07:25:37
api resource can use dependency injection ?

Yes of course

rebory 2019-09-10 11:59:33
Test
rebory 2019-09-10 12:00:10
i have query regarding laravel belongs to relationship
rebory 2019-09-10 12:01:07
we are used in blade to print User Name Behalf of user_id
|