devfactory/block

Block for your website
202 5
Install
composer require devfactory/block
Latest Version:3.1.1
PHP:^7.3|^8.0|^8.1
License:MIT
Last Updated:Nov 18, 2021
Links: GitHub  ·  Packagist
Maintainer: devfactory

#Block

This package allows you to create block and choose the position of the block where you need it.

Installation

Using Composer to install the package.

composer require devfactory/block

Then in your app/config/app.php file register the following service providers: Devfactory\Block\BlockServiceProvider::class,

// config/app.php

'providers' => [
    ...
    Devfactory\Block\BlockServiceProvider::class,
],

'aliases' => [
    ...
    'Block' => Devfactory\Block\Facades\Block::class,
],

If you want you can publish the config, views and migration files if you want to change them

php artisan vendor:publish --provider="Devfactory\Block\BlockServiceProvider" --tag="config"
php artisan vendor:publish --provider="Devfactory\Block\BlockServiceProvider" --tag="views"
php artisan vendor:publish --provider="Devfactory\Block\BlockServiceProvider" --tag="migrations"

Usage

You just need to create a block then you can call the block content with the block facade like this

{{ Block::get('block_title') }}

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

617,346,630 9,703
laravel/framework

The Laravel Framework.

561,395,438 34,860
laravel/tinker

Powerful REPL for the Laravel framework.

471,804,685 7,440