Skip to content

Commit

Permalink
Installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kreaweb.be committed Apr 19, 2024
1 parent e29fef3 commit eb722c3
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 22 deletions.
2 changes: 1 addition & 1 deletion app/Providers/JetstreamServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function boot(): void
});

// ----------------------------------------------------------------------------------------------------
// Let uss redirect the user to the page he was before he tried to log in
// Let us redirect the user to the page he was before he tried to log in
// Ref: https://laracasts.com/discuss/channels/laravel/redirect-to-intended-url-jetstream-fortify
// ----------------------------------------------------------------------------------------------------
// Get Session Link for Login View
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion public/build/assets/app-Be5yQES4.css

This file was deleted.

1 change: 1 addition & 0 deletions public/build/assets/app-PC8shcNk.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"resources/css/app.css": {
"file": "assets/app-Be5yQES4.css",
"file": "assets/app-PC8shcNk.css",
"src": "resources/css/app.css",
"isEntry": true
},
Expand Down
6 changes: 0 additions & 6 deletions resources/views/back/developer/dependencies.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,6 @@
<li class="py-2">
<x-link href="https://github.com/stevebauman/location/" target="_blank">stevebauman/location</x-link>
</li>

<x-hr.narrow class="w-full h-1 max-md:mx-auto my-4 bg-gray-100 border-0 rounded dark:bg-gray-700" />

<li class="py-2">
<x-link href="https://github.com/stefangabos/world_countries/" target="_blank">stefangabos/world_countries</x-link> (candidate)
</li>
</ul>
</x-ts-tab.items>

Expand Down
21 changes: 11 additions & 10 deletions resources/views/teams/delete-team-form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@
</x-slot>

<x-slot name="content">
<table>
<tr>
<td>{{ __('team.persons') }} : </td>
<td><b>{{ count($team->persons) }}</b></td>
</tr>
<tr>
<td>{{ __('team.couples') }} : </td>
<td><b>{{ count($team->couples) }}</b></td>
</tr>
</table>
@php
$headers = [['index' => 'object', 'label' => $team->name], ['index' => 'count', 'label' => '#']];
$rows = [
['object' => __('team.users'), 'count' => count($team->users)],
['object' => __('team.persons'), 'count' => count($team->persons)],
['object' => __('team.couples'), 'count' => count($team->couples)],
];
@endphp

<x-ts-table :$headers :$rows />

<x-hr.normal />

Expand Down

0 comments on commit eb722c3

Please sign in to comment.