I have in laravel/app/views/css a file style.css and this is not public, how can i use this in template using <style></style>. I don't want this to be a link (<link href="style.css" rel="stylesheet">), just plain text inside html.
i kwon how to do this with blade:
<link href="style.css" rel="stylesheet">
but i want to learn how to do something like this from file:
<style>
//css code
</style>
with TWIG i know i can do this: <style> {{ include(//link to css file) }} </style>
The only way i know i can do this with blade is:
rename the login.css to login.blade.php
<style type="text/css" media="screen">
@include('css.login')
</style>
have another way?