Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/26b/backstate

Collection of ready to use components.
https://github.com/26b/backstate

blade-template laravel livewire

Last synced: about 1 month ago
JSON representation

Collection of ready to use components.

Awesome Lists containing this project

README

        

# BackState

Laravel package with **blade** and **livewire** components defining base logic/state and, also, layouts to use in your laravel project.

## How to use

Let's imagine this package has defined a livewire component (is the same thing for blade) called *Example*:

```php

@extends('layouts.app')

@section('content')
{{-- Calling backstate component `example` --}}

@endsection
```

If, for some reason, you want to override the component view, just create the folder `resources/views/vendor/backstate/livewire/` defining here the components views we want to modify, like:

```html


{{ __('New component view') }}

```