Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/26b/backstate
- Owner: 26B
- Created: 2021-03-12T18:07:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T13:27:58.000Z (10 months ago)
- Last Synced: 2024-04-26T16:46:44.562Z (7 months ago)
- Topics: blade-template, laravel, livewire
- Language: Blade
- Homepage:
- Size: 150 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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') }}
```