HEX
Server: nginx/1.28.3
System: Linux lightweb-s1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User: drdrivek-71 (1047)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/eslinced-103/brise-edu.or.kr/app/Stubs/Card.stub
<?php

namespace {{namespace}}\Cards;

use Illuminate\Support\Facades\Auth;
use Laravel\Nova\Card;

class {{card}} extends Card
{
    /**
     * The width of the card (1/3, 1/2, or full).
     *
     * @var string
     */
    public $width = '1/3';

    /**
     * If you need to append data from database you can create functions like this
     * and remember to append when you load the card
     */
    public function queryToDo()
    {

    }

    /**
     * Get the component name for the element.
     *
     * @return string
     */
    public function component()
    {
        return '{{uriKey}}';
    }
}