🚩
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
.container-sm {
|
.container-sm {
|
||||||
max-width: 25%;
|
max-width: 25%;
|
||||||
}
|
}/*# sourceMappingURL=login.css.map */
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
.col h3 {
|
h3 {
|
||||||
background-color: green;
|
background-color: green;
|
||||||
}/*# sourceMappingURL=index.css.map */
|
}/*# sourceMappingURL=index.css.map */
|
||||||
@@ -1 +1 @@
|
|||||||
{"version":3,"sources":["index.scss","index.css"],"names":[],"mappings":"AACI;EACI,uBAAA;ACAR","file":"index.css"}
|
{"version":3,"sources":["index.scss","index.css"],"names":[],"mappings":"AAAA;EACI,uBAAA;ACCJ","file":"index.css"}
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
.col{
|
h3 {
|
||||||
h3{
|
background-color: green;
|
||||||
background-color: green;
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -12,27 +12,31 @@ import { Head } from "@inertiajs/vue3";
|
|||||||
<Head>
|
<Head>
|
||||||
<title>Transactions</title>
|
<title>Transactions</title>
|
||||||
</Head>
|
</Head>
|
||||||
<div class="row h-50">
|
<div class="container">
|
||||||
<div class="col">
|
<div class="row">
|
||||||
<h3 class="text-center">Incomes</h3>
|
<div class="col">
|
||||||
<table class="table table-striped table-hover table-responsive">
|
<h3 class="text-center">Incomes</h3>
|
||||||
<tbody>
|
<table
|
||||||
<tr>
|
class="table table-striped table-hover table-responsive"
|
||||||
<td v-for="column in $page.props.incomes.columns">
|
>
|
||||||
{{ column }}
|
<tbody>
|
||||||
</td>
|
<tr>
|
||||||
</tr>
|
<td
|
||||||
<tr v-for="item in $page.props.incomes.data">
|
v-for="column in $page.props.incomes
|
||||||
<td>{{ item.amount }}</td>
|
.columns"
|
||||||
<td>{{ item.description }}</td>
|
>
|
||||||
<td>{{ item.date }}</td>
|
{{ column }}
|
||||||
<td>{{ item.label }}</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
<tr v-for="item in $page.props.incomes.data">
|
||||||
</table>
|
<td>{{ item.amount }}</td>
|
||||||
</div>
|
<td>{{ item.description }}</td>
|
||||||
<div class="col">
|
<td>{{ item.date }}</td>
|
||||||
<table class="table table-striped"></table>
|
<td>{{ item.label }}</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</homeLayout>
|
</homeLayout>
|
||||||
|
|||||||
1
vendor/laravel/sail/runtimes/8.3/Dockerfile
vendored
1
vendor/laravel/sail/runtimes/8.3/Dockerfile
vendored
@@ -59,6 +59,7 @@ RUN setcap "cap_net_bind_service=+ep" /usr/bin/php8.3
|
|||||||
|
|
||||||
RUN userdel -r ubuntu
|
RUN userdel -r ubuntu
|
||||||
#RUN groupadd --force -g $WWWGROUP sail
|
#RUN groupadd --force -g $WWWGROUP sail
|
||||||
|
RUN groupadd --force -g sail
|
||||||
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail
|
RUN useradd -ms /bin/bash --no-user-group -g $WWWGROUP -u 1337 sail
|
||||||
|
|
||||||
COPY start-container /usr/local/bin/start-container
|
COPY start-container /usr/local/bin/start-container
|
||||||
|
|||||||
Reference in New Issue
Block a user