douyi1779 2014-03-21 16:15
浏览 143
已采纳

Laravel 4 - 在视图中使用类函数

I was wondering if it is possible to use classes and define functions in a controller file , then call these methods inside views.

Right now :

I'm just writing normal php functions then inluding them inside the views like :

PHP FILE

function viewProfile() {

    function getUsername() {

    $username = Auth::user()->username;

    return $username;
    }

    function getName() {

    $name = Auth::user()->name;

    return $name;
    }

    function getEmail() {

    $email = Auth::user()->email;

    return $email;
    }

}

Views File :

<?php

include(app_path().'/scripts/profile.php'); 

viewProfile();

?>

<td><?php echo getUsername() ?></td>

I want to write it in classes instead like :

public class profile {


public static $username = Auth::user()->username;
public static $name = Auth::user()->]name;
public static $email = Auth::user()->email;

    function getUsername() {

    return $username;
    }

    function getName() {

    return $name;
    }


    function getEmail() {

    return $email;
    }


}

I tried creating a controller file and using the above code but doesn;t seem to work - i guess controllers can be used for routing functions only.

Is there any way to use the class above and link the view , so i can use its methods ?

  • 写回答

1条回答 默认 最新

  • dp411805872 2014-03-21 16:27
    关注

    You just use blade to get what you want...

    in your view you do...

    <div>username: {{ Auth::user()->username }}</div>
    <div>name: {{ Auth::user()->name }}</div>
    <div>email: {{ Auth::user()->email }}</div>
    

    And that is mainly it, no need for classes or anything else.

    TIP To activate blade you just add the .blade.php extenstion

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)