萨吉拉 / 玛穆什卡
Laravel 的缓存
dev-master
2023-01-24 14:56 UTC
Requires
Requires (Dev)
- illuminate/cache: ^6
- illuminate/database: ^6.20
This package is auto-updated.
Last update: 2024-09-24 18:43:29 UTC
README
为 Laravel 提供的用于视图缓存的 Paquete。
安装
在 Config/App.php 中注册一个新的 service provider
Sargilla\Mamushka\MamushkaServiceProvider::class,
使用方法
在方法中添加 cacheable 方法
use Sargilla\Mamushka\Cacheable;
class MyModel extends Model { use Cacheable;
在控制器中:return view('micontrolador.index', compact('controlador'));
在视图中
@cache($controlador) @foreach ($controlador->items as $item) echo $item; @endforeach @endcache