Files
spa-api/bundles/docs/views/home.blade.php

38 lines
882 B
PHP
Raw Normal View History

2012-04-01 22:45:19 +01:00
@layout('docs::template')
@section('content')
2012-04-02 09:47:30 -05:00
<h1>Learn the terrain.</h1>
2012-04-01 22:45:19 +01:00
<p>
2012-04-02 09:47:30 -05:00
You've landed yourself on our default home page. The route that
is generating this page lives in the main routes file. You can
find it here:
2012-04-01 22:45:19 +01:00
</p>
<pre>APP_PATH/routes.php</pre>
2012-04-02 09:47:30 -05:00
<!--
2012-04-02 10:03:02 +01:00
<pre class="prettyprint lang-php linenums">
return array(
'welcome' => 'Welcome to our website!',
);
</pre>
2012-04-02 09:47:30 -05:00
-->
2012-04-01 22:45:19 +01:00
<p>And the view sitting before you can be found at:</p>
<pre>APP_PATH/views/home/index.php</pre>
2012-04-02 09:47:30 -05:00
<h1>Create something beautiful.</h1>
2012-04-01 22:45:19 +01:00
<p>
Now that you're up and running, it's time to start creating!
Here are some links to help you get started:
</p>
<ul>
<li><a href="http://laravel.com">Official Website</a></li>
<li><a href="http://forums.laravel.com">Laravel Forums</a></li>
<li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
</ul>
2012-04-02 10:03:02 +01:00
@endsection