soysudhanshu/katana 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

soysudhanshu/katana

Composer 安装命令:

composer require soysudhanshu/katana

包简介

Stadalone version of laravel Blade

README 文档

README

Tests

Allows you to library provides functionality to render Laravel Blade templates in any PHP project, without requiring the full Laravel framework.

Note: This package is still in development and not ready for production use.

Getting Starting

You can install the package via composer:

composer require soysudhanshu/katana

Usage

use Blade\Blade;

$blade = $blade = new Blade(__DIR__, __DIR__ . '/.cache');

echo $blade->render('hello', ['name' => 'Jhon Doe']);

Layouts

Template Inheritance - ✅

Template inheritance allows you to create layouts by defining a master template that can be extended by child templates.

{{-- layouts/app.blade.php --}}

<!DOCTYPE html>
<html>
    <head>
        <title>App Name - @yield('title')</title>
    </head>
    <body>
        <main>
            @yield('content')
        </main>
        <aside>
            @yield('sidebar')
        </aside>
    </body>
</html>
{{-- blog-post.blade.php --}}

@extends('layouts.app')

@section('title', 'Home Page')

@section('content')
    <article>
        <h1>Blog Post</h1>
        <p>This is the blog post content.</p>
    </article>
@endsection

@section('sidebar')
    @parent

    <h3>Related Posts</h3>
    <ul>
        <li>Post 1</li>
        <li>Post 2</li>
        <li>Post 3</li>
    </ul>
@endsection

Supported Directives

Directive Description Status
@extends Directive to extend layout
@yield Outputs a section content
@section Defines a section content
@endsection Defined a end of section content
@show Outputs a section content immediately
@parent Outputs the content of the parent section
@hasSection Determines if section content has been defined
@sectionMissing Determines if section content is missing

Feature List

Blade Directives

Directive Description Status
{{ $var }} Display the value of the variable
{!! $var !!} Display the value of the variable without escaping
@{{ $var }} Escaping blade directive
@{!! $var !!} Escaping unsafe output directive
@@<any> Escaping control blade directive
@verbatim Prevents rendering.

Control Structures

Directive Description Status
@if If statement
@unless Convenient if
@isset Checks if variable is set
@empty Check if the variable is empty
@switch Switch statement
@case Case statement
@default Default statement
@break Break statement
@continue Continue statement

Loops

Directive Description Status
@for For loop
@foreach Foreach loop
@while While loop
@forelse Forelse loop
$loop Loop variable in the for loop (basic)

Conditional Class & Styles

Directive Description Status
@class Conditional class
@style Conditional style

Components

Directive Description Status
@component
Class components
Anonymous component
Vendor Namespacing
Component Attributes
Short hand attribute syntax
Attribute Render Escaping
Component Methods
{{ $attributes }}
{{ $attributes->merge() }}
{{ $attributes->class() }}
{{ $attributes->class() }} Conditional
{{ $attributes->prepends() }}
{{ $attributes->filter() }}
{{ $attributes->whereStartsWith() }}
{{ $attributes->whereDoesntStartWith() }}
{{ $attributes->whereDoesntStartWith()->first() }}
{{ $attributes->has() }}
{{ $attributes->hasAny() }}
{{ $attributes->get() }}
Default {{ $slot }}
Name slots {{ $customSlot }}
$slot->isEmpty()
$slot->hasActualContent()
Scoped Slots
Slot Attributes
Dynamic Components
Anonymous Index Components

Directives

Directive Description Status
@auth
@guest
@production
@env
@include
@session
@selected
@checked
@disabled
@readonly
@required
@includeIf
@includeWhen
@includeUnless
@includeFirst
@each
@once
@push
@stack
@pushOnce
@prependOnce
@php
@use

统计信息

  • 总下载量: 82
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 4
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-06-27