Skip to content

Commit

Permalink
fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
gheorghelupu17 committed Aug 7, 2023
1 parent 7d609bd commit 720cb03
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 65 deletions.
3 changes: 3 additions & 0 deletions app/Filament/Resources/UserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
class UserResource extends Resource
{
protected static ?string $model = User::class;
protected static ?string $navigationGroup = 'Administrează';
protected static ?int $navigationSort = 2;


protected static ?string $navigationIcon = 'heroicon-o-collection';

Expand Down
63 changes: 0 additions & 63 deletions app/Filament/Resources/UsersResource.php

This file was deleted.

2 changes: 1 addition & 1 deletion lang/ro/project.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
'pending' => 'Proiecte in curs de aprobare',
'change_request' => 'Proiecte cu modificări',
'approved' => 'Proiecte active',
'rejected' => 'Proiecte dezactivate',
'rejected' => 'Proiecte refuzate' ,
],

'labels' =>[
Expand Down
2 changes: 1 addition & 1 deletion resources/views/forms/components/link.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
class=" flex text-center justify-items-center object-center align-middle"
>
<div x-data="{ state: $wire.entangle('{{ $getStatePath() }}').defer }" class="mx-auto">
<a href="{{ $getRecord()->getStatuteLinkAttribute() }}" target="_blank"> {{ $getRecord()->getFirstMedia('organizationFilesStatute')->name}}.{{ $getRecord()->getFirstMedia('organizationFilesStatute')->extension}}</a>
<a href="{{ $getRecord()?->getStatuteLinkAttribute() }}" target="_blank"> {{ $getRecord()->getFirstMedia('organizationFilesStatute')?->name}}.{{ $getRecord()->getFirstMedia('organizationFilesStatute')?->extension}}</a>
</div>
</x-dynamic-component>

0 comments on commit 720cb03

Please sign in to comment.