Skip to content

Material Blade is a simple package that provides the beautifulness of Google Material Design components as Laravel Blade components. Material Blade aims to make UI/UX development of your Laravel app faster, inspired by Material UI.

License

Notifications You must be signed in to change notification settings

sensasi-delight/material-blade

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Material Blade

Material Blade is a simple package that provides the beautifulness of Google Material Design components as Laravel Blade components. Material Blade aims to make UI/UX development of your Laravel app faster, inspired by Material UI.

<!-- from this -->
<button class="mdc-button">
    <span class="mdc-button__ripple"></span>
    <span class="mdc-button__label">This is a Button</span>
</button>

<!-- to this -->
<x-MaterialBlade::button label="This is a Button" />

<!-- or this for more shorter -->
<x-mbc::button label="This is a Button" />

General knowledge of Laravel and Blade components i'ts required for using this package. However, the fully understand about this feature is helpful for optimizing the usages of this package. If you never heard about Blade Components, it is a good start to understand it and plays with Material Blade package.

The examples of package usages can be seen on this repository.

Status

This package is still under development, please contribute to make it release faster. The status of Material Design Web components that implemented on this package are shown on the list below.

Components

  • App bar: Top
  • Banner
  • Button
    • Basic Button
    • Floating Action Button
    • Icon Button
  • Card
  • Checkbox
  • Chip
  • Data table
  • Dialog
  • Icon
  • Image list
  • List
  • Menu
  • Navigation drawer
  • Progress indicator
    • Linear Progress
    • Circular Progress
  • Radio button
  • Slider
  • Snackbar
  • Switch
  • Tab Bar
  • Text field
  • Tooltip
  • Typography

Unsupported Components

The implementation of these components below are not supported by default for Material Design Web.

  • App bar: bottom
  • Backdrop
  • Bottom navigation
  • Date picker
  • Divider
  • Navigation rail
  • Sheet: bottom
  • Sheet: side
  • Time picker

Installation

Material Blade is available on packagist.org, You can import the package to your Laravel project using Composer by command-line below:

composer require sensasi-delight/material-blade

After Material Blade has installed on your Laravel project, you have to registering the MaterialBlade\ComponentProvider::class to the app providers.

// config/app.php

'providers' => [
    // Other Service Providers

    MaterialBlade\ComponentProvider::class,
];

Next step, you must includes once the <x-MaterialBlade::_assets /> inside <head> on your view. That's it‼, now you can use the Material Blade components on your view🎉. Your view should look like code below.

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Material Blade Example</title>

    <!-- Material Blade required assets -->
    <x-MaterialBlade::_assets />

</head>

<body>

    <!-- this is Material Blade component -->
    <x-MaterialBlade::button label="This is a Button" />

</body>

</html>

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project.
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature).
  3. Commit your Changes (git commit -m 'Add some AmazingFeature').
  4. Push to the Branch (git push origin feature/AmazingFeature).
  5. Open a Pull Request.

License

The code is released under the MIT license.

Contact

Email - zainadam.id@gmail.com

Twitter - @sensasi_DELIGHT

About

Material Blade is a simple package that provides the beautifulness of Google Material Design components as Laravel Blade components. Material Blade aims to make UI/UX development of your Laravel app faster, inspired by Material UI.

Topics

Resources

License

Stars

Watchers

Forks