LoginSignup
3
4

More than 5 years have passed since last update.

Laravel4からLaravel5にテンプレートを移行するときのメモ

Posted at

スタイルシートの変更

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

URLの変更

URL::to('/') //laravel4
{{ url('/') }} //laravel5

スクリプトの変更

{{HTML::script('sample.js')}} //laravel4
<script src="{{ asset('sample.js') }}" type="text/javascript"></script> //laravel5
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4