masterpuppet gracias por responder
estoy implementando lo que me enviaste
http://codehappy.daylerees.com/ajax-content pero no logro hacerlo que funcione
este es mi codigo
users.blade.php
Código PHP:
Ver original@extends('layout')
@section('content')
<br>
<br>
<br>
<div class="container">
<h3>Último Registro</h3>
<p>{{ $users->id }}</p>
<p>{{ $users->email }}</p>
</div>
<div id="content">
<p>Hello and welcome to the site!</p>
</div>
<a href="#" id="load-content">Load Content</a>
@stop
layout.blade.php
Código PHP:
Ver original<!DOCTYPE html>
<html>
<head>
{{ HTML::style('css/bootstrap.css') }}
{{ HTML::script('js/jquery-1.10.1.min.js')}}
{{ HTML::script('js/script.js')}}
script.js
Código Javascript
:
Ver original$(document).ready(function() {
$('#load-content').click(function(e) {
e.preventDefault();
$.get(BASE+'content', function(data) {
$('#content').html(data);
});
})
});
content.blade.php
Código PHP:
Ver original<h1>New Content</h1>
<p>This is our AJAX loaded content.</p>
routes.php
Código PHP:
Ver originalRoute::get('content', function() {
return View::make('content');
});