Which is the more practical solution?
Is it your situation?
Any freelancers from kochi, kerala?


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?
Wtf
Develop sex
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
$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

print body to see it have post_id in it or not


Someone tell me a template like this.

hi guys I have just cleaned content of login blade and uts showing this error but login blade is exist


here is route list
php artisan cache:clear
ok
still same error(
<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>
<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
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?
Page Expired
Page Expired
I think @csrf missing in your form.check it.
{{ csrf_field() }}
<meta name=”csrf-token” content=”{{ csrf_token() }}”>
try sending with params, instead of body
postman has some bugs
event.preventDefault()
have you enabled rewrite modul for nginx/apache?
href=”javascript:;” it will not do anything !
Google : laravel bootstrap modal
jQuery on select event
Bootstrap modal on select
Page Expired
Page Expired
Csrf_field
{{ csrf_field() }}
but not work