I am saving data into database by passing variable throught ajax and using it in the controller.
Saving works fine, it saves data into a database but the problem is displaying saved page. Database has 2 fields, name and html. Name is obviously name of the website and html is pure html code. so when user saves page with name 'random' I want to display html page to him using localhost/random
Error message I get is:
Trying to get property of non-object (View: C:\xampp\htdocs\fyprojectesources\views\layouts\website.blade.php)
Here's what I have done so far:
Ajax:
var web_name;
function updateDatabase(newCode, name_website)
{
code2 = document.getElementById("content-link2").innerHTML;
web_name = ($('#website_name').val());
// make an ajax request to a PHP file
// on our site that will update the database
// pass in our lat/lng as parameters
$.post('http://localhost/template', {
_token: $('meta[name=csrf-token]').attr('content'),
newCode: (code2),
name_website: (web_name),
})
.done(function() {
})
.fail(function() {
alert("error");
});
}
Controller:
public function postDB(Request $request) {
$newName = $request->input('name_website');
$newLat = $request->input('newCode');
$websites = new Website();
$websites->name = $newName;
$websites->html = $newLat;
$websites->save();
$name = $newName;
return redirect($name);
}
public function website($name) {
$website = Website::where('name', $name)->first()->html;
// Render resources/views/template.blade.php or any view you want
// and pass the data. E.g. $website, so you can access $website->html in your view.
return view('layouts/website', compact('name'));
}
}
Routes:
Route::get('home', 'BuilderController@homepage');
Route::get('template', 'BuilderController@templates');
Route::post('template', 'BuilderController@postDB');
Route::get('logout', 'BuilderController@getLogout');
Route::get('/{name}', 'BuilderController@website');
website.blade.php:
@extends('layouts.master') @section('title', 'Website Builder') @section('content')
<meta name="csrf-token" content="{{ csrf_token() }}" />
{{html_entity_decode($name->html)}}
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script>
axios.get('/localhost/name').then(
html => document.querySelector('html').innerHTML = html
);
</script>
</html>
@endsection @show
What is going on?