Problems with laravel between localhost and hosting
I have the next problem, I have a project in Laravel 5.7 in my localhost computer and I upload this project to my Hosting on Bluehost, the problem is:
I have the file viewcustomers.blade.php in my localhost works ok without problems, but in my hosting this file Dont works...
This is the code:
@foreach($prendas as $prenda)
@if($clientes->id == $prenda->idcliente)
<tr>
<td align="center"><img src="../images/clientes/{{$clientes->nombre}} {{$clientes->apellido}}/{{$prenda->fotoprenda1}}" width="150"></td>
<td align="center">{{$prenda->prenda}}</td>
<td align="center">{{$prenda->marca}}</td>
<td align="center">{{$prenda->modelo}}</td>
<td align="center">{{$prenda->anio}}</td>
<td align="center">$ {{$prenda->limitcredit}}</td>
@if($prenda->status == "Sin Prestamos")
<td bgcolor="green">Sin Prestamos</td>
<td><a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td><a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td>Sin Limite de Credito</td>
@endif
</tr>
@endif
@endforeach
<tr>
<td> </td></tr>
</table>
</div>
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
And this is the problem in the Hosting
status == "Sin Prestamos" and $clientes->id ==
$prenda->idcliente): ?>
idcliente."/".$prenda->id)); ?>" class="btn
btn-danger">Agregar Prestamo
status == "En Empeño" and $prenda->restcredit limitcredit and $clientes->id ==
$prenda->idcliente): ?>
<a href="<?php echo e(url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)); ?>"
class="btn btn-danger">Agregar Prestamo
<?php elseif($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id ==
$prenda->idcliente): ?>
Sin Limite de Credito
Fecha Prestamo
Cantidad Prestada
Plazo
Interes
Pago Quincenal
Fecha Primer Pago
Total a Pagar Prestamo
Status
Boleta de Empeño Arguments "Undefined variable: prenda (View:
/home/thealmfc/public_html/lonchedeadobada.xyz/resources/views/viewcustomers.blade.php)"
Any idea? thanks
laravel laravel-5.7
add a comment |
I have the next problem, I have a project in Laravel 5.7 in my localhost computer and I upload this project to my Hosting on Bluehost, the problem is:
I have the file viewcustomers.blade.php in my localhost works ok without problems, but in my hosting this file Dont works...
This is the code:
@foreach($prendas as $prenda)
@if($clientes->id == $prenda->idcliente)
<tr>
<td align="center"><img src="../images/clientes/{{$clientes->nombre}} {{$clientes->apellido}}/{{$prenda->fotoprenda1}}" width="150"></td>
<td align="center">{{$prenda->prenda}}</td>
<td align="center">{{$prenda->marca}}</td>
<td align="center">{{$prenda->modelo}}</td>
<td align="center">{{$prenda->anio}}</td>
<td align="center">$ {{$prenda->limitcredit}}</td>
@if($prenda->status == "Sin Prestamos")
<td bgcolor="green">Sin Prestamos</td>
<td><a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td><a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td>Sin Limite de Credito</td>
@endif
</tr>
@endif
@endforeach
<tr>
<td> </td></tr>
</table>
</div>
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
And this is the problem in the Hosting
status == "Sin Prestamos" and $clientes->id ==
$prenda->idcliente): ?>
idcliente."/".$prenda->id)); ?>" class="btn
btn-danger">Agregar Prestamo
status == "En Empeño" and $prenda->restcredit limitcredit and $clientes->id ==
$prenda->idcliente): ?>
<a href="<?php echo e(url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)); ?>"
class="btn btn-danger">Agregar Prestamo
<?php elseif($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id ==
$prenda->idcliente): ?>
Sin Limite de Credito
Fecha Prestamo
Cantidad Prestada
Plazo
Interes
Pago Quincenal
Fecha Primer Pago
Total a Pagar Prestamo
Status
Boleta de Empeño Arguments "Undefined variable: prenda (View:
/home/thealmfc/public_html/lonchedeadobada.xyz/resources/views/viewcustomers.blade.php)"
Any idea? thanks
laravel laravel-5.7
Check your code, You closed@foreach
wrongly
– sanu
Nov 12 '18 at 22:03
add a comment |
I have the next problem, I have a project in Laravel 5.7 in my localhost computer and I upload this project to my Hosting on Bluehost, the problem is:
I have the file viewcustomers.blade.php in my localhost works ok without problems, but in my hosting this file Dont works...
This is the code:
@foreach($prendas as $prenda)
@if($clientes->id == $prenda->idcliente)
<tr>
<td align="center"><img src="../images/clientes/{{$clientes->nombre}} {{$clientes->apellido}}/{{$prenda->fotoprenda1}}" width="150"></td>
<td align="center">{{$prenda->prenda}}</td>
<td align="center">{{$prenda->marca}}</td>
<td align="center">{{$prenda->modelo}}</td>
<td align="center">{{$prenda->anio}}</td>
<td align="center">$ {{$prenda->limitcredit}}</td>
@if($prenda->status == "Sin Prestamos")
<td bgcolor="green">Sin Prestamos</td>
<td><a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td><a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td>Sin Limite de Credito</td>
@endif
</tr>
@endif
@endforeach
<tr>
<td> </td></tr>
</table>
</div>
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
And this is the problem in the Hosting
status == "Sin Prestamos" and $clientes->id ==
$prenda->idcliente): ?>
idcliente."/".$prenda->id)); ?>" class="btn
btn-danger">Agregar Prestamo
status == "En Empeño" and $prenda->restcredit limitcredit and $clientes->id ==
$prenda->idcliente): ?>
<a href="<?php echo e(url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)); ?>"
class="btn btn-danger">Agregar Prestamo
<?php elseif($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id ==
$prenda->idcliente): ?>
Sin Limite de Credito
Fecha Prestamo
Cantidad Prestada
Plazo
Interes
Pago Quincenal
Fecha Primer Pago
Total a Pagar Prestamo
Status
Boleta de Empeño Arguments "Undefined variable: prenda (View:
/home/thealmfc/public_html/lonchedeadobada.xyz/resources/views/viewcustomers.blade.php)"
Any idea? thanks
laravel laravel-5.7
I have the next problem, I have a project in Laravel 5.7 in my localhost computer and I upload this project to my Hosting on Bluehost, the problem is:
I have the file viewcustomers.blade.php in my localhost works ok without problems, but in my hosting this file Dont works...
This is the code:
@foreach($prendas as $prenda)
@if($clientes->id == $prenda->idcliente)
<tr>
<td align="center"><img src="../images/clientes/{{$clientes->nombre}} {{$clientes->apellido}}/{{$prenda->fotoprenda1}}" width="150"></td>
<td align="center">{{$prenda->prenda}}</td>
<td align="center">{{$prenda->marca}}</td>
<td align="center">{{$prenda->modelo}}</td>
<td align="center">{{$prenda->anio}}</td>
<td align="center">$ {{$prenda->limitcredit}}</td>
@if($prenda->status == "Sin Prestamos")
<td bgcolor="green">Sin Prestamos</td>
<td><a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td><a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a></td>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit)
<td bgcolor="red">Empeñada</td>
<td>Sin Limite de Credito</td>
@endif
</tr>
@endif
@endforeach
<tr>
<td> </td></tr>
</table>
</div>
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
And this is the problem in the Hosting
status == "Sin Prestamos" and $clientes->id ==
$prenda->idcliente): ?>
idcliente."/".$prenda->id)); ?>" class="btn
btn-danger">Agregar Prestamo
status == "En Empeño" and $prenda->restcredit limitcredit and $clientes->id ==
$prenda->idcliente): ?>
<a href="<?php echo e(url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)); ?>"
class="btn btn-danger">Agregar Prestamo
<?php elseif($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id ==
$prenda->idcliente): ?>
Sin Limite de Credito
Fecha Prestamo
Cantidad Prestada
Plazo
Interes
Pago Quincenal
Fecha Primer Pago
Total a Pagar Prestamo
Status
Boleta de Empeño Arguments "Undefined variable: prenda (View:
/home/thealmfc/public_html/lonchedeadobada.xyz/resources/views/viewcustomers.blade.php)"
Any idea? thanks
laravel laravel-5.7
laravel laravel-5.7
asked Nov 12 '18 at 18:22
Beto A. Lien
84
84
Check your code, You closed@foreach
wrongly
– sanu
Nov 12 '18 at 22:03
add a comment |
Check your code, You closed@foreach
wrongly
– sanu
Nov 12 '18 at 22:03
Check your code, You closed
@foreach
wrongly– sanu
Nov 12 '18 at 22:03
Check your code, You closed
@foreach
wrongly– sanu
Nov 12 '18 at 22:03
add a comment |
2 Answers
2
active
oldest
votes
Check your code, you closed @foreach
wrongly
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
Here variable $prenda
is out of scope. You closed @foreach
before this code snippet.
Please explain me more
– Beto A. Lien
Nov 12 '18 at 23:01
@Beto can you update the full code?
– sanu
Nov 13 '18 at 5:48
add a comment |
Your error level is diferent between your localhost and your hosting.
Set
error_reporting(E_ALL);
ini_set('display_errors', 1);
on your localhost and you will see the same problem
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53267969%2fproblems-with-laravel-between-localhost-and-hosting%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Check your code, you closed @foreach
wrongly
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
Here variable $prenda
is out of scope. You closed @foreach
before this code snippet.
Please explain me more
– Beto A. Lien
Nov 12 '18 at 23:01
@Beto can you update the full code?
– sanu
Nov 13 '18 at 5:48
add a comment |
Check your code, you closed @foreach
wrongly
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
Here variable $prenda
is out of scope. You closed @foreach
before this code snippet.
Please explain me more
– Beto A. Lien
Nov 12 '18 at 23:01
@Beto can you update the full code?
– sanu
Nov 13 '18 at 5:48
add a comment |
Check your code, you closed @foreach
wrongly
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
Here variable $prenda
is out of scope. You closed @foreach
before this code snippet.
Check your code, you closed @foreach
wrongly
<div class="col-sm-12">
<h3 class="text-center">Prestamos Actuales</h3>
<hr>
<center>
@if($prenda->status == "Sin Prestamos" and $clientes->id == $prenda->idcliente)
<a href="{{url('/addpawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit < $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<a href="{{url('/addmorepawn/'.$prenda->idcliente."/".$prenda->id)}}" class="btn btn-danger">Agregar Prestamo</a>
@elseif ($prenda->status == "En Empeño" and $prenda->restcredit >= $prenda->limitcredit and $clientes->id == $prenda->idcliente)
<h2 class="text-danger">Sin Limite de Credito</h2>
@endif
Here variable $prenda
is out of scope. You closed @foreach
before this code snippet.
answered Nov 12 '18 at 21:58
sanu
283212
283212
Please explain me more
– Beto A. Lien
Nov 12 '18 at 23:01
@Beto can you update the full code?
– sanu
Nov 13 '18 at 5:48
add a comment |
Please explain me more
– Beto A. Lien
Nov 12 '18 at 23:01
@Beto can you update the full code?
– sanu
Nov 13 '18 at 5:48
Please explain me more
– Beto A. Lien
Nov 12 '18 at 23:01
Please explain me more
– Beto A. Lien
Nov 12 '18 at 23:01
@Beto can you update the full code?
– sanu
Nov 13 '18 at 5:48
@Beto can you update the full code?
– sanu
Nov 13 '18 at 5:48
add a comment |
Your error level is diferent between your localhost and your hosting.
Set
error_reporting(E_ALL);
ini_set('display_errors', 1);
on your localhost and you will see the same problem
add a comment |
Your error level is diferent between your localhost and your hosting.
Set
error_reporting(E_ALL);
ini_set('display_errors', 1);
on your localhost and you will see the same problem
add a comment |
Your error level is diferent between your localhost and your hosting.
Set
error_reporting(E_ALL);
ini_set('display_errors', 1);
on your localhost and you will see the same problem
Your error level is diferent between your localhost and your hosting.
Set
error_reporting(E_ALL);
ini_set('display_errors', 1);
on your localhost and you will see the same problem
answered Nov 12 '18 at 18:25
Diego Andrade
9118
9118
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53267969%2fproblems-with-laravel-between-localhost-and-hosting%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Check your code, You closed
@foreach
wrongly– sanu
Nov 12 '18 at 22:03