@extends('rapyd::demo.master') @section('title','Demo') @section('body')

Demo Index

@if(Session::has('message'))
{!! Session::get('message') !!}
@endif

Welcome to Rapyd Demo.
@if (isset($is_rapyd) AND $is_rapyd) @else first click on Populate Database button, then click on menu

{!! link_to('rapyd-demo/schema', "Populate Database", array("class"=>"btn btn-default")) !!} @endif

Click on tabs to see how rapyd widgets can save your time.
The first tab Models is included just to show models and relations used in this demo, there isn't custom code, rapyd can work with your standard or extended Eloquent models. DataSet, DataGrid, DataFilter, DataForm, and DataEdit are the "widgets" that rapyd provide.

@stop @section('content') @include('rapyd::demo.menu') @yield('body') @stop