m2collective/laravel-html-markup

A package for basic HTML document markup.

Maintainers

Package info

github.com/m2collective/laravel-html-markup

pkg:composer/m2collective/laravel-html-markup

Transparency log

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.1.4 2026-07-30 11:54 UTC

This package is not auto-updated.

Last update: 2026-08-13 12:16:02 UTC


README

A package for basic HTML document markup.

Laravel PHP

Installation

You can install the package via composer:

composer require m2collective/laravel-html-markup

The package will automatically register itself.

Commands

Publishing the configuration file:

php artisan m2collective:html-markup:publish-config

Publishing HTML views:

php artisan m2collective:html-markup:publish-views

Blade

An example of using a package with the blade:

<x-html-markup::base lang="en">
    <x-html-markup::head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta charset="utf-8">
        <title></title>
        //...
    </x-html-markup::head>
    <x-html-markup::body>
        //...
    </x-html-markup::body>
</x-html-markup::base>

License

The MIT License (MIT). Please see the License file for more information.