mirror of
https://github.com/notrab/dumbo.git
synced 2025-01-17 14:18:14 +01:00
28 lines
709 B
Markdown
28 lines
709 B
Markdown
|
# Laravel Blade Templating Example
|
||
|
|
||
|
This example showcases how to use the Laravel Blade templating engine to render views and pass them to Dumbo for displaying as HTML pages.
|
||
|
|
||
|
## Getting Started
|
||
|
|
||
|
Follow these steps to set up and run the example:
|
||
|
|
||
|
1. **Install Dependencies**
|
||
|
|
||
|
First, install the necessary dependencies by running:
|
||
|
|
||
|
```bash
|
||
|
composer install
|
||
|
```
|
||
|
|
||
|
2. **Start the Development Server**
|
||
|
|
||
|
Once the dependencies are installed, start the development server with the following command:
|
||
|
|
||
|
```bash
|
||
|
composer start
|
||
|
```
|
||
|
|
||
|
## Additional Resources
|
||
|
|
||
|
For more information on Laravel Blade and its capabilities, visit the official [Blade documentation](https://github.com/jenssegers/blade).
|