It has come to my attention that in Laravel 4, you can load CSS and scripts using the following method:
{{ HTML::style('css/style.css'); }}
Which will result in:
<link media="all" type="text/css" rel="stylesheet" href="http://localhost/cupcakes-laravel/public/css/style.css">
But now I am wondering how I can load responsive CSS to achieve something like this:
<link rel="stylesheet" media="only screen and (max-width: 1023px), only screen and (max-device-width: 1023px)" href="css/tablet.css" />