user3818576
user3818576

Reputation: 3391

How to add css in laravel manually?

I'm trying to add my css in laravel manually without using command. I save my folder css to public and use this code

{!! Html::style( asset('css/bootstrap.min.css')) !!}
{!! Html::style( asset('css/style.css')) !!}

but still doesn't work. I read tutorials about this but they teach to cammand it. Do I have something to configure about this? I'm new in laravel. Trying to learn it. hoping for your help. thanks in advance

Upvotes: 0

Views: 220

Answers (2)

Sonu Yadav
Sonu Yadav

Reputation: 61

{{ HTML::style('sximo/themes/sximone/css/bootstrap.min.css')}}

Upvotes: 0

Peeje
Peeje

Reputation: 475

  <link rel="stylesheet" href="{{ URL::asset('css/bootstrap.min.css') }}">

Upvotes: 1

Related Questions