Caso você esteja pensando em criar um pacote em php, este guia pode ajuda-lo. Principalmente se este pacote for open source.
Para conseguir alcançar seu objetivo, recomendo que você estude alguns pontos antes de avançar:
Pivot tables can be confusing and a little hard to wrap your head around at first. In this quick article we are going to dive into what a pivot table is, how to create one and finally how to use the pivot table. Let's dive in!
A pivot table is used to connect relationships between two tables. Laravel provides a Many To Many
relationship where you can use a pivot table.
<x-layout title="nova serie"> | |
<form action="/series/salvar" method="post"> | |
@csrf | |
<div class="mb-3"> | |
<label for="nome" class="form-label">Nome:</label> | |
<input type="text" id="nome" name="nome" class="form-control"> | |
</div> | |
<button type="submit" class="btn btn-primary">Adicionar</button> | |
</form> | |
</x-layout> |
const mix = require('laravel-mix'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Laravel applications. By default, we are compiling the CSS | |
| file for the application as well as bundling up all the JS files. |