typerocket/laravel
最新稳定版本:v2.2.7
Composer 安装命令:
composer require typerocket/laravel
包简介
Makes form building and model binding a breeze.
关键字:
README 文档
README
Originally for WordPress, TypeRocket makes building advanced forms and fields easy for Laravel too.
See http://typerocket.com for documentation (mainly for WordPress).
Installing
composer require typerocket/laravel
Laravel Service Providers make a way for extending Laravel. TypeRocket Laravel 2.0 is a service provider for Laravel. In your config/app.php file add:
'providers' => [ // Other Service Providers TypeRocket\Service::class, ],
Then form the command line:
php artisan vendor:publish --provider="TypeRocket\Service"
You can now access the config/typerocket.php.
Finally, add uploads to public folder. From your site root directory run:
ln -s ../storage/uploads uploads
Note: Routes, views, and controller will be adding for you.
JS and CSS init
In blade templates such master templates.
{!! \TypeRocket\Assets::getHeadString() !!}
{!! \TypeRocket\Assets::getFooterString() !!}
Adding assets
$paths = Config::getPaths(); // type ( js || css), id, path Assets::addToFooter('js', 'typerocket-core', $paths['urls']['js'] . '/typerocket.js'); Assets::addToHead('js', 'typerocket-global', $paths['urls']['js'] . '/global.js');
Forms
// model, action ( create || update ), id, path $form = new \TypeRocket\Form('Post', 'update', $id, '/posts/' . $id);
<div class="typerocket-container">
{!! $form->open() !!}
{!! $form->text('title')->setLabel('Post Title') !!}
{!! $form->checkbox('publish')->setText('Published') !!}
{!! $form->close('Submit') !!}
</div>
Request Old Input
To load old input into the form set the request.
class PostController extends Controller { public function create(Request $request) { $form = new \TypeRocket\Form('Post', 'create', null, '/posts/'); $form->setRequest($request); // set request return view('posts.create', ['form' => $form]); } }
Validate
class PostController extends Controller { public function store(Request $request) { $tr = $request->input('tr'); $validator = \Validator::make($tr, [ 'title' => 'required|max:255' ]); if ($validator->fails()) { return redirect("posts/create") ->withErrors($validator) ->withInput(); } $post = new Fabric(); $post->title = $tr['title']; $post->save(); header('Location: /posts/'); } }
Matrix route.
Working with matrix fields the service provider will add this for you.
Route::post('matrix_api/{group}/{type}', function($group, $type) { (new TypeRocket\Matrix())->route($group, $type); });
CSFR for matrix
<?php namespace App\Http\Middleware; use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier; class VerifyCsrfToken extends BaseVerifier { /** * The URIs that should be excluded from CSRF verification. * * @var array */ protected $except = [ 'matrix_api/*' // added ]; }
Matrix Assets
Assets will not be loaded form fields because the view is already loaded. Include the possible assets in the controller.
For example a Matrix field that uses an image field will need to include image.js.
$paths = \TypeRocket\Config::getPaths(); \TypeRocket\Assets::addToFooter('js', 'typerocket-image', $paths['urls']['js'] . '/image.js');
Media
Typerocket Media uses https://github.com/eventviva/php-image-resize to create thumbnails.
Unsplash
To enable, set the typerocket.media.unsplash.enabled to true, and set the the Unsplash client ID in typerocket.media.unsplash.client_id.
To add the Unsplash button and modal anywhere, use the custom Blade directive @tr_unsplash.
统计信息
- 总下载量: 3.81k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2015-09-22