Skip to content

Blade Integration for Scrawler, Based on BladeOne

Notifications You must be signed in to change notification settings

scrawler-labs/blade

Repository files navigation

Scrawler Blade

GitHub Workflow Status PHPStan Enabled Packagist Version Packagist License



🔥Blade Templating engine integration for Scrawler🔥
🇮🇳 Made in India 🇮🇳

💻 Installation

You can install Scrawler App via Composer. If you don't have composer installed , you can download composer from here

composer require scrawler/blade

✨ Basic usage

<?php

require __DIR__ . '/vendor/autoload.php';

template()->registerDir('my/views/dir','my/cache/dir','my/assets/dir');
tempate()->render('home');

//Or even simpler
view('home');