Can anyone help us in Laravel framework upgrade work of a website?

|
mayurtekwani 2020-08-28 20:09:06
OK thank you everyone
Akhtar Khan 2020-08-28 20:57:09
Anonymous 2020-08-28 19:54:55
How to connect readymate html css bootstrap template in laravel

You can use bagisto

GistOf 2020-08-28 21:00:44
Niraj 2020-08-28 16:21:26
I am getting the error during the signup process of a new user on my website. You can try to register as a user on the following site: www.cyclos.za.org and you can be able to see the error.

please tell me how to resolve this error

Where are you getting the currency symbol? It’s not there in the form that I tested. What did you use to build this?

GistOf 2020-08-28 21:04:12
Niraj 2020-08-28 16:21:26
I am getting the error during the signup process of a new user on my website. You can try to register as a user on the following site: www.cyclos.za.org and you can be able to see the error.

please tell me how to resolve this error

It looks like you designed this thing yourself. Maybe you should avoid that on your next project. Programmers are rarely good at designing

shaildark 2020-08-28 21:47:51
GistOf 2020-08-28 13:08:48
If you don’t mind my curiosity, may you please share what you built?

It’s simple wallpaper download website, just for demo

GistOf 2020-08-28 21:48:26
Let’s see it
shaildark 2020-08-28 21:49:59
Anonymous 2020-08-28 19:54:55
How to connect readymate html css bootstrap template in laravel

Divide the template in header, body and footer section then you can use any template in your website, just cut the header and footer code and save it as layout file in laravel and just make changes in body part

GistOf 2020-08-28 21:56:01
harmlez_prinz 2020-08-28 20:04:45
In as much as you are right, very few of us, get the documentation straight up. Especially when you are new to development.

I didn’t find the laravel doc helpful much, until i was over 3 months into it.

I will advice a beginner to go with videos. Then trying building the project on your own, without copying the codes.

When you get Stock, solve, during the process, you will learn new things.

I agree

rashadpoovannur 2020-08-28 22:34:38
Can i get laravel 7 socialite with passport tutorials
GistOf 2020-08-28 22:43:16
Anonymous 2020-08-28 19:54:55
How to connect readymate html css bootstrap template in laravel

Put all the assets in the public folder and put all the HTML in the views folder. Change file extensions from .html to .blade.php
That should work, but it’s only a starting point

GistOf 2020-08-28 22:50:34
laravel_discuss-49092.jpg
You may also want something like this i your routes file. Make sure it’s at the bottom of all other routes. It’s just a way of catching the URLs that came with the template
GistOf 2020-08-28 22:51:43
In case you want to copy + paste:
GistOf 2020-08-28 22:52:18
Route::get( ‘{page}’, function ( $page ) {
$page = str_replace( ‘.html’, ”, $page )
if( view()->exists( $page )
return view( $page );
else abort( 404 );
});
praneet81 2020-08-29 00:32:26
how do i write my route in laravel which would be something like this yoururl/api/listing?foo=”value”&bar=”value”
Siberfx 2020-08-29 01:49:28
you can set a get route, and add parameters in blade files, so it will look like that
^_* 2020-08-29 05:32:59
laravel_discuss-49100.jpg
hi gus whats the issuse when install pakege
^_* 2020-08-29 05:33:11
PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 4096 bytes) in phar://C:/ProgramData/Comp
oserSetup/bin/composer.phar/src/Composer/DependencyResolver/RuleWatchGraph.php on line 52
^_* 2020-08-29 05:33:34
^_* 2020-08-29 05:33:11
PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 4096 bytes) in phar://C:/ProgramData/Comp
oserSetup/bin/composer.phar/src/Composer/DependencyResolver/RuleWatchGraph.php on line 52

the message like this

themanojyadav 2020-08-29 06:39:51
harmlez_prinz 2020-08-28 18:53:50
I think it is getting the second one, because the request is been reassigned, if you can give a better explanation of what u trying to achieve, i think i can help

I want to prevent my web application from HTTP parameter pollution attack. Because as you may be know that what a attacker do in this attack. He add a new parameter with the same name, due to which our parameter gets overridden and his data get inserted into database.

fullstackdev2018 2020-08-29 07:46:07
Hi, all. wish you a very good day.
2020-08-29 08:03:58
Hello…I fell into one of the errors where by after un installing the vscode…
2020-08-29 08:04:16
Something strange happened….
2020-08-29 08:04:41
Then i had to re install it
2020-08-29 08:05:31
But on each occassion i tried to run my initial site that is….
2020-08-29 08:06:59
Usually some other links apart from localhost//jsApp/public, that is the services, blog and about links page
2020-08-29 08:07:21
All i get is a 404….??!!
2020-08-29 08:08:00
Can someone help me out of this problem? I would greatly appreciate
2020-08-29 08:10:15
My site is “jsApp” not the real as such
israa2912 2020-08-29 08:21:39
No how?
Mr_Classy 2020-08-29 09:15:19
How can I two diff Field insert in database..in laravel ?
Mr_Classy 2020-08-29 09:15:30
Need help gyzz.
Mr_Classy 2020-08-29 09:21:21
Anyone here ?
Mr_Classy 2020-08-29 09:21:32
So plzz help me..
rashadpoovannur 2020-08-29 09:55:10
rashadpoovannur 2020-08-28 22:34:38
Can i get laravel 7 socialite with passport tutorials

Any one ??

GistOf 2020-08-29 10:13:27
praneet81 2020-08-29 00:32:26
how do i write my route in laravel which would be something like this yoururl/api/listing?foo=”value”&bar=”value”

Your route will just be Route::get( ‘api/listing’, … )
You have access to the GET params using Input::get( ‘foo’ ) inside your controller

GistOf 2020-08-29 10:22:20
Mr_Classy 2020-08-29 09:15:19
How can I two diff Field insert in database..in laravel ?

What are you trying to do? Laravel through both Eloquent and Query Builder allows you to insert and update records using arrays. When using Eloquent, you need to make sure the fields are listed in the $fillable array of the relevant model

praneet81 2020-08-29 12:06:08
Hello all

I’ve two tables one is listing table and another is users table

Users hasone listing

So i have to write a search query in which users will enter their preferred location for searching which I’m using an sql query given in the Google maps api docs in the listing table

Now the issue I’m having is the second optional search query which can be any column from the users table

I’m using the join query but it shows empty results always

Can anyone suggest me how do i chain them together?

m 2020-08-29 12:25:38
Can anyone help us in Laravel framework upgrade work of a website?
m 2020-08-29 12:25:49
It’s a paid activity
GistOf 2020-08-29 12:29:29
m 2020-08-29 12:25:38
Can anyone help us in Laravel framework upgrade work of a website?

Yes

GistOf 2020-08-29 12:32:27
m 2020-08-29 12:25:38
Can anyone help us in Laravel framework upgrade work of a website?

Which version are you coming from?

Christoph 2020-08-29 12:33:04
praneet81 2020-08-29 12:06:08
Hello all

I’ve two tables one is listing table and another is users table

Users hasone listing

So i have to write a search query in which users will enter their preferred location for searching which I’m using an sql query given in the Google maps api docs in the listing table

Now the issue I’m having is the second optional search query which can be any column from the users table

I’m using the join query but it shows empty results always

Can anyone suggest me how do i chain them together?

You don’t need to chain them together. You can use the relationship functions

praneet81 2020-08-29 12:33:40
I need to use where conditions in the relationship table to filter the main table
GistOf 2020-08-29 12:35:01
Christoph 2020-08-29 12:33:04
You don’t need to chain them together. You can use the relationship functions

I don’t think that solves the problem if I understood it correctly

GistOf 2020-08-29 12:35:32
praneet81 2020-08-29 12:33:40
I need to use where conditions in the relationship table to filter the main table

May we see what you already have?

GistOf 2020-08-29 12:36:02
The query code
praneet81 2020-08-29 12:36:07
Yes I’m sending the code in a few
m 2020-08-29 12:38:06
GistOf 2020-08-29 12:32:27
Which version are you coming from?

5.4

Christoph 2020-08-29 12:38:25
I think it does solve the problem. You can make a sub query in the relationship.
But it’s always difficult to explain or see without code
GistOf 2020-08-29 12:39:15
m 2020-08-29 12:38:06
5.4

That’s interesting. Bring it on!

|