10 lines
275 B
PHP
10 lines
275 B
PHP
@extends('layouts.ajaxb4')
|
|
@section('content')
|
|
|
|
<div id = 'msg'>This message will be replaced using Ajax.
|
|
Click the button to replace the message.</div>
|
|
<?php
|
|
echo Form::button('Replace Message',['onClick'=>'getMessage()']);
|
|
?>
|
|
|
|
@endsection
|