3

我想使用以下内容:库文件夹中的 Holmes:

http://paste.laravel.com/Em

    // Determine if request is from a mobile device
Holmes::is_mobile(); // returns boolean

// Determine the type of device
$device = Holmes::get_device(); // returns string

// Determine if a specific device is being used
// Any supported device below is acceptable
// lowercased no spaces, obviously. <3
Holmes::is_ipad();
Holmes::is_blackberrytablet();

我在哪里放置什么?

在路线:?

看法:

@if(Holmes::is_iphone())
{{ 'this is an iphone' }}
@endif

我也收到此错误:Holmes 库文件中的第 25 行仅应通过引用传递变量

我正在尝试从程序混乱中过渡;)

4

1 回答 1

3

Chris Fidao (Fideloper)有一篇很棒的文章介绍了如何在Laravel 4中加载库:
http ://fideloper.com/laravel-4-application-setup-app-library-autoloading

于 2013-05-30T13:44:16.837 回答