├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml ├── resources └── views │ └── components │ └── emerald.blade.php └── src ├── Components └── Markup.php ├── EmeraldServiceProvider.php ├── Traits └── Markup.php └── ~Generate.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/phpunit.xml -------------------------------------------------------------------------------- /resources/views/components/emerald.blade.php: -------------------------------------------------------------------------------- 1 | {!! $getMarkup($slot) !!} -------------------------------------------------------------------------------- /src/Components/Markup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/src/Components/Markup.php -------------------------------------------------------------------------------- /src/EmeraldServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/src/EmeraldServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/Markup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/src/Traits/Markup.php -------------------------------------------------------------------------------- /src/~Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aqquaa/blade-emerald/HEAD/src/~Generate.php --------------------------------------------------------------------------------