Добавление файла Css

laravel 4.2: my demo project in ytform when i try to add css file (style.css) from public folder having another folder, css folder. try to get any class its not working . in View: i have an other folder, name layouts and i am accessing here css file but not working? 

где в master.blade.php

 <head> @section('head') <meta charset="UTF-8"> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="/css/style.css"> @show </head> 

я пытаюсь с обоими путями, но напрасно, css-файл не поддерживает в каких-либо файлах папок вида, как добавлять файлы css

  <link rel="stylesheet" type="text/css" href="/css/style.css"> {{HTML::style('css/style.css')}} any solution or mistake ? 

 <link rel="stylesheet" type="text/css" href="{{ asset('css/style.css') }}"> 

Вы можете попробовать это

или

 {{ HTML::style(asset('css/site.css'), array('rel' => 'stylesheet', 'type' => 'text/css')) }} 

и файлы css должны находиться в общей папке, чтобы это работало

Просто добавьте несколько строк в Blade template

 {{ HTML::style('css/main.css') }} 

См. Здесь ссылку