- using latest L4 beta
- added
"jasonlewis/basset": "dev-master"
to my composer.json - ran
composer update
- added the alias and service provider
- tweaked the assets config
- added the blade tag
- blade tag just echo's out nothing :(
Last active
December 17, 2015 13:49
-
-
Save wayneashleyberry/5619497 to your computer and use it in GitHub Desktop.
Basset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
'collections' => array( | |
'app' => function($collection) | |
{ | |
$directory = $collection->directory('css', function($collection) | |
{ | |
$collection->add('normalize.css'); | |
$collection->add('base.css'); | |
$collection->add('layout.css'); | |
}); | |
} | |
), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Biznews</title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
@stylesheets('app') | |
</head> | |
<body> | |
{{ $content }} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment