Any freelancers from kochi, kerala?

|
Pascal Habib 2020-02-23 21:30:21
laravel_discuss-27593.jpg

Pascal Habib 2020-02-23 21:30:21
laravel_discuss-27592.jpg

sixpeteunder 2020-02-23 21:31:11
sixpeteunder 2020-02-23 21:30:14
As a workaround, I’m thinking
1. of having a DECIMAL(10, 8) field for latitudes and DECIMAL(11, 8) for longitudes, OR
2. of throwing everything in a JSON field.

Which is the more practical solution?

rrajesh011 2020-02-23 21:34:45
Pascal Habib 2020-02-23 21:30:21

Wtf

Pascal Habib 2020-02-23 21:38:03
rrajesh011 2020-02-23 21:34:45
Wtf

Develop sex

Roham0010 2020-02-23 21:42:43
sixpeteunder 2020-02-23 21:30:14
As a workaround, I’m thinking
1. of having a DECIMAL(10, 8) field for latitudes and DECIMAL(11, 8) for longitudes, OR
2. of throwing everything in a JSON field.

Is it your situation?
You have some tables
in your project you fill the tables but just one columns will be filled by another service
I guess it’s better to go with decimal data type
In my opinion don’t use Json as far as you can

Dilip Madhesiya 2020-02-23 22:52:07
http://www.mrdilip.com
Noorev7 2020-02-23 23:10:43
Hi , this is my code
$body = $request->all();
$id= $body[‘post_id’];
$data=(new AppmodelsComments)->where(‘post_id’, $id)->with([‘user’])->paginate(10);

return response()->json($data);

* why it give me this error

Noorev7 2020-02-23 23:10:46
laravel_discuss-27603.jpg

Roham0010 2020-02-23 23:13:53
Noorev7 2020-02-23 23:10:46

print body to see it have post_id in it or not

Noorev7 2020-02-23 23:32:24
laravel_discuss-27605.jpg

Noorev7 2020-02-23 23:32:50
I sent post_id by postman but I can’t receive it in controller
2020-02-24 00:57:52
laravel_discuss-27608.jpg
Someone tell me a template like this.
2020-02-24 01:43:15
When I declare href=# and when I click it, the page auto redirect to 404 not found, how to make the link to do nothing?
2020-02-24 01:56:46
laravel_discuss-27610.jpg
hi guys I have just cleaned content of login blade and uts showing this error but login blade is exist
2020-02-24 01:56:55
laravel_discuss-27611.jpg

2020-02-24 01:57:16
laravel_discuss-27612.jpg
here is route list
alicivil 2020-02-24 01:58:46
2020-02-24 01:56:46
hi guys I have just cleaned content of login blade and uts showing this error but login blade is exist

php artisan cache:clear

2020-02-24 01:59:37
alicivil 2020-02-24 01:58:46
php artisan cache:clear

ok

2020-02-24 02:00:37
alicivil 2020-02-24 01:58:46
php artisan cache:clear

still same error(

2020-02-24 02:00:46
<div class=”container”>
<div class=”row justify-content-center”>
<div class=”col-md-8″>
<div class=”card”>
<div class=”card-header”>{{ (‘Login’) }}</div>

<div class=”card-body”>
<form method=”POST” action=”{{ route(‘login’) }}”>
@csrf

<div class=”form-group row”>
<label for=”email” class=”col-md-4 col-form-label text-md-right”>{{ (‘E-Mail Address’) }}</label>

<div class=”col-md-6″>
<input id=”email” type=”email” class=”form-control @error(’email’) is-invalid @enderror” name=”email” value=”{{ old(’email’) }}” required autocomplete=”email” autofocus>

@error(’email’)
<span class=”invalid-feedback” role=”alert”>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>

<div class=”form-group row”>
<label for=”password” class=”col-md-4 col-form-label text-md-right”>{{ (‘Password’) }}</label>

<div class=”col-md-6″>
<input id=”password” type=”password” class=”form-control @error(‘password’) is-invalid @enderror” name=”password” required autocomplete=”current-password”>

@error(‘password’)
<span class=”invalid-feedback” role=”alert”>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>

<div class=”form-group row”>
<div class=”col-md-6 offset-md-4″>
<div class=”form-check”>
<input class=”form-check-input” type=”checkbox” name=”remember” id=”remember” {{ old(‘remember’) ? ‘checked’ : ” }}>

<label class=”form-check-label” for=”remember”>
{{ (‘Remember Me’) }}
</label>
</div>
</div>
</div>

<div class=”form-group row mb-0″>
<div class=”col-md-8 offset-md-4″>
<button type=”submit” class=”btn btn-primary”>
{{ (‘Login’) }}
</button>

@if (Route::has(‘password.request’))
<a class=”btn btn-link” href=”{{ route(‘password.request’) }}”>
{{ (‘Forgot Your Password?’) }}
</a>
@endif
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>

2020-02-24 02:00:58
2020-02-24 02:00:46
<div class=”container”>
<div class=”row justify-content-center”>
<div class=”col-md-8″>
<div class=”card”>
<div class=”card-header”>{{ (‘Login’) }}</div>

<div class=”card-body”>
<form method=”POST” action=”{{ route(‘login’) }}”>
@csrf

<div class=”form-group row”>
<label for=”email” class=”col-md-4 col-form-label text-md-right”>{{ (‘E-Mail Address’) }}</label>

<div class=”col-md-6″>
<input id=”email” type=”email” class=”form-control @error(’email’) is-invalid @enderror” name=”email” value=”{{ old(’email’) }}” required autocomplete=”email” autofocus>

@error(’email’)
<span class=”invalid-feedback” role=”alert”>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>

<div class=”form-group row”>
<label for=”password” class=”col-md-4 col-form-label text-md-right”>{{ (‘Password’) }}</label>

<div class=”col-md-6″>
<input id=”password” type=”password” class=”form-control @error(‘password’) is-invalid @enderror” name=”password” required autocomplete=”current-password”>

@error(‘password’)
<span class=”invalid-feedback” role=”alert”>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>

<div class=”form-group row”>
<div class=”col-md-6 offset-md-4″>
<div class=”form-check”>
<input class=”form-check-input” type=”checkbox” name=”remember” id=”remember” {{ old(‘remember’) ? ‘checked’ : ” }}>

<label class=”form-check-label” for=”remember”>
{{ (‘Remember Me’) }}
</label>
</div>
</div>
</div>

<div class=”form-group row mb-0″>
<div class=”col-md-8 offset-md-4″>
<button type=”submit” class=”btn btn-primary”>
{{ (‘Login’) }}
</button>

@if (Route::has(‘password.request’))
<a class=”btn btn-link” href=”{{ route(‘password.request’) }}”>
{{ (‘Forgot Your Password?’) }}
</a>
@endif
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>

i just cleaned this part

nithinpvarghese 2020-02-24 04:25:55
Any freelancers from kochi, kerala??
codetrend 2020-02-24 06:49:59
What do you suggest for crawling swcure websites
I want to crawl trendyol.com but it seems its secure from crawl
I cant even get the page html with file_get_content(https://trendyol.com)
Or even with domDocument its return time limit reach 60 seconds on both of them

Any solution?

sadeqi125 2020-02-24 07:25:07
when i login my system on cpanel not go to home page go to expired page
sadeqi125 2020-02-24 07:25:09
Page Expired
sadeqi125 2020-02-24 07:25:23
why dont work correct
sadeqi125 2020-02-24 07:25:41
419
Page Expired

Mahbub_Habib 2020-02-24 07:30:28
sadeqi125 2020-02-24 07:25:41
419
Page Expired

I think @csrf missing in your form.check it.

sadeqi125 2020-02-24 07:34:32
Mahbub_Habib 2020-02-24 07:30:28
I think @csrf missing in your form.check it.

{{ csrf_field() }}

sadeqi125 2020-02-24 07:34:45
Mahbub_Habib 2020-02-24 07:30:28
I think @csrf missing in your form.check it.

<meta name=”csrf-token” content=”{{ csrf_token() }}”>

sanixdarker 2020-02-24 07:56:08
Hi there, that’s look very interesting ! 🔥
skys215 2020-02-24 08:27:57
Noorev7 2020-02-23 23:32:50
I sent post_id by postman but I can’t receive it in controller

try sending with params, instead of body
postman has some bugs

skys215 2020-02-24 08:28:19
2020-02-24 01:43:15
When I declare href=# and when I click it, the page auto redirect to 404 not found, how to make the link to do nothing?

event.preventDefault()

skys215 2020-02-24 08:29:00
2020-02-24 01:56:46
hi guys I have just cleaned content of login blade and uts showing this error but login blade is exist

have you enabled rewrite modul for nginx/apache?

skys215 2020-02-24 08:31:35
have you used InfyOm/laravel-generator?
2020-02-24 08:48:24
2020-02-24 01:43:15
When I declare href=# and when I click it, the page auto redirect to 404 not found, how to make the link to do nothing?

href=”javascript:;” it will not do anything !

oxbir 2020-02-24 09:12:04
I have 2 tables provinces and agencies
oxbir 2020-02-24 09:13:19
I want to create a page sample https://www.ninja.ir/ninja-trainers
oxbir 2020-02-24 09:14:46
I want to when click on a provinces open a modal of bootstrap
skys215 2020-02-24 09:37:53
That’s not a laravel problem
rijisoft 2020-02-24 10:21:56
oxbir 2020-02-24 09:14:46
I want to when click on a provinces open a modal of bootstrap

Google : laravel bootstrap modal

jQuery on select event

Bootstrap modal on select

sadeqi125 2020-02-24 10:22:54
419
Page Expired
sadeqi125 2020-02-24 10:23:04
in laravel system in cpanel
rijisoft 2020-02-24 10:23:11
sadeqi125 2020-02-24 10:22:54
419
Page Expired

Csrf_field

sadeqi125 2020-02-24 10:23:11
can help me
sadeqi125 2020-02-24 10:23:38
rijisoft 2020-02-24 10:23:11
Csrf_field

{{ csrf_field() }}

sadeqi125 2020-02-24 10:23:47
this is not correct dear
sadeqi125 2020-02-24 10:24:27
rijisoft 2020-02-24 10:23:11
Csrf_field

but not work

sadeqi125 2020-02-24 10:24:33
when i login
|