Skip to content

Commit d96e486

Browse files
authored
Merge pull request #8 from lara-zeus/v3
support Filament V3
2 parents af7bc8d + a501f7d commit d96e486

File tree

169 files changed

+36294
-4912
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+36294
-4912
lines changed

README.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Zeus Kit](https://larazeus.com/images/zeus-kit.png)](https://github.com/lara-zeus/zeus)
1+
[![Zeus Kit](https://larazeus.com/images/zeus-banner.png)](https://github.com/lara-zeus/zeus)
22

33
<p align="center">
44

@@ -11,11 +11,11 @@
1111

1212
</p>
1313

14-
# Laravel Zeus
15-
provide you with a collection of Laravel packages that help you build your site faster and focus on your business
14+
# Lara Zeus
15+
provide you with a collection of Laravel packages and filament plugins that help you build your site faster and focus on your business
1616

1717
## Intro
18-
this project is a standalone app., a Starter Kit; it's pre-configured to run all Zeus packages and some extra perks.
18+
This project is a standalone app, a Starter Kit; it's pre-configured to run all Zeus packages and some extra perks.
1919

2020
- Layout and Widget manager using [lara Zeus Rain](https://larazeus.com/rain)
2121
- Posts and pages using [lara Zeus Sky](https://larazeus.com/sky)
@@ -24,7 +24,6 @@ this project is a standalone app., a Starter Kit; it's pre-configured to run all
2424
- Forms builder using [lara Zeus Bolt](https://larazeus.com/bolt)
2525
- Login, registration, and profile using [Laravel Breeze](https://laravel.com/docs/master/starter-kits#laravel-breeze)
2626
- Users and permissions management using [Filament Shield](https://github.com/bezhanSalleh/filament-shield#shieldsuper-admin)
27-
- Dashboard Widget Counter [Overlook](https://github.com/awcodes/overlook)
2827

2928
## Installations
3029
you can start with
@@ -50,8 +49,14 @@ php artisan make:filament-user
5049
## Configuration
5150

5251
### Layout
53-
- create your first layout and set the slug in the 'zeus-rain' config file.
54-
- create your navigation and set the slug in the 'Zeus' config file.
52+
- create your first layout and set the slug in the 'AdminPanelProvider' file:
53+
```php
54+
RainPlugin::make()
55+
->defaultLayout('new-page')
56+
```
57+
the default is: `home-page`.
58+
59+
- create your navigation and set the slug in the 'zeus.php' config file. the default is: `home-nav`
5560

5661
### Build assets
5762
run

app/Classes/RenderNavItem.php

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?php
2+
3+
namespace App\Classes;
4+
5+
use LaraZeus\Sky\SkyPlugin;
6+
7+
class RenderNavItem
8+
{
9+
public static function render(array $item, string $class = ''): string
10+
{
11+
$color = 'border-b border-b-secondary-500 text-secondary-500';
12+
13+
if ($item['type'] === 'page-link' || $item['type'] === 'page_link') {
14+
$page = SkyPlugin::get()->getModel('Post')::page()->find($item['data']['page_id']) ?? '';
15+
$activeClass = (request()->routeIs('page', $page)) ? $color : 'border-transparent';
16+
17+
return '<a class="'.$class.' '.$activeClass.'"
18+
target="'.($item['data']['target'] ?? '_self').'"
19+
href="'.route('page', $page).'"
20+
>'.
21+
$item['label'].
22+
'</a>';
23+
} elseif ($item['type'] === 'post-link' || $item['type'] === 'post_link') {
24+
$post = SkyPlugin::get()->getModel('Post')::find($item['data']['post_id']) ?? '';
25+
$activeClass = (request()->routeIs('post', $post)) ? $color : 'border-transparent';
26+
27+
return '<a class="'.$class.' '.$activeClass.'"
28+
target="'.($item['data']['target'] ?? '_self').'"
29+
href="'.route('post', $post).'"
30+
>'.
31+
$item['label'].
32+
'</a>';
33+
} elseif ($item['type'] === 'library-link' || $item['type'] === 'library_link') {
34+
$tag = SkyPlugin::get()->getModel('Tag')::find($item['data']['library_id']) ?? '';
35+
$activeClass = (str(request()->url())->contains($tag->library->first()->slug)) ? $color : 'border-transparent';
36+
37+
return '<a class="'.$class.' '.$activeClass.'"
38+
target="'.($item['data']['target'] ?? '_self').'"
39+
href="'.route('library.tag', $tag->slug).'"
40+
>'.
41+
$item['label'].
42+
'</a>';
43+
44+
} elseif ($item['type'] === 'app-link' || $item['type'] === 'app_link') {
45+
$activeClass = (request()->routeIs($item['data']['app_code'])) ? $color : 'border-transparent';
46+
47+
return '<a class="'.$class.' '.$activeClass.'"
48+
target="'.($item['data']['target'] ?? '_self').'"
49+
href="'.url(self::getAppUrl($item['data']['app_code'])).'"
50+
>'.
51+
$item['label'].
52+
'</a>';
53+
} else {
54+
return '<a class="'.$class.'"
55+
target="'.($item['data']['target'] ?? '_self').'"
56+
href="'.$item['data']['url'].'"
57+
>'.
58+
$item['label'].
59+
'</a>';
60+
}
61+
}
62+
63+
private static function getAppUrl($app)
64+
{
65+
return match ($app) {
66+
'blog' => 'blog',
67+
'contact' => 'contact-us',
68+
'faq' => 'blog/faq',
69+
'libraries' => 'blog/library',
70+
'forms' => 'forms',
71+
};
72+
}
73+
}

app/Filament/Resources/UserResource.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
use App\Filament\Resources\UserResource\Pages;
66
use App\Models\User;
77
use Filament\Forms\Components\TextInput;
8-
use Filament\Resources\Form;
8+
use Filament\Forms\Form;
99
use Filament\Resources\Resource;
10-
use Filament\Resources\Table;
1110
use Filament\Tables\Columns\IconColumn;
1211
use Filament\Tables\Columns\TextColumn;
1312
use Filament\Tables\Filters\Filter;
13+
use Filament\Tables\Table;
1414
use Illuminate\Database\Eloquent\Builder;
1515
use Illuminate\Database\Eloquent\Model;
1616

@@ -22,7 +22,7 @@ class UserResource extends Resource
2222

2323
protected static ?string $navigationIcon = 'heroicon-o-lock-closed';
2424

25-
protected static function getNavigationLabel(): string
25+
public static function getNavigationLabel(): string
2626
{
2727
return 'Users';
2828
}
@@ -37,7 +37,7 @@ public static function getLabel(): string
3737
return 'user';
3838
}
3939

40-
protected static function getNavigationGroup(): ?string
40+
public static function getNavigationGroup(): ?string
4141
{
4242
return 'Users';
4343
}

app/Models/User.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
namespace App\Models;
44

5-
use BezhanSalleh\FilamentShield\Traits\HasFilamentShield;
65
use Filament\Models\Contracts\FilamentUser;
76
use Illuminate\Auth\Passwords\CanResetPassword;
87
use Illuminate\Contracts\Auth\MustVerifyEmail;
98
use Illuminate\Database\Eloquent\Factories\HasFactory;
109
use Illuminate\Foundation\Auth\User as Authenticatable;
1110
use Illuminate\Notifications\Notifiable;
1211
use Laravel\Sanctum\HasApiTokens;
12+
use Spatie\Permission\Traits\HasRoles;
1313

14-
class User extends Authenticatable implements MustVerifyEmail, FilamentUser
14+
class User extends Authenticatable implements FilamentUser, MustVerifyEmail
1515
{
16-
use HasApiTokens, HasFactory, Notifiable, CanResetPassword, HasFilamentShield;
16+
use CanResetPassword, HasApiTokens, HasFactory, HasRoles, Notifiable;
1717

1818
/**
1919
* The attributes that are mass assignable.
@@ -46,7 +46,7 @@ class User extends Authenticatable implements MustVerifyEmail, FilamentUser
4646
'password' => 'hashed',
4747
];
4848

49-
public function canAccessFilament(): bool
49+
public function canAccessPanel(\Filament\Panel $panel): bool
5050
{
5151
return true; //str_ends_with($this->email, '@yourdomain.com') && $this->hasVerifiedEmail();
5252
}

app/Policies/CategoryPolicy.php

+12-36
Original file line numberDiff line numberDiff line change
@@ -12,120 +12,96 @@ class CategoryPolicy
1212

1313
/**
1414
* Determine whether the user can view any models.
15-
*
16-
* @return \Illuminate\Auth\Access\Response|bool
1715
*/
18-
public function viewAny(User $user)
16+
public function viewAny(User $user): bool
1917
{
2018
return $user->can('view_any_category');
2119
}
2220

2321
/**
2422
* Determine whether the user can view the model.
25-
*
26-
* @return \Illuminate\Auth\Access\Response|bool
2723
*/
28-
public function view(User $user, Category $category)
24+
public function view(User $user, Category $category): bool
2925
{
3026
return $user->can('view_category');
3127
}
3228

3329
/**
3430
* Determine whether the user can create models.
35-
*
36-
* @return \Illuminate\Auth\Access\Response|bool
3731
*/
38-
public function create(User $user)
32+
public function create(User $user): bool
3933
{
4034
return $user->can('create_category');
4135
}
4236

4337
/**
4438
* Determine whether the user can update the model.
45-
*
46-
* @return \Illuminate\Auth\Access\Response|bool
4739
*/
48-
public function update(User $user, Category $category)
40+
public function update(User $user, Category $category): bool
4941
{
5042
return $user->can('update_category');
5143
}
5244

5345
/**
5446
* Determine whether the user can delete the model.
55-
*
56-
* @return \Illuminate\Auth\Access\Response|bool
5747
*/
58-
public function delete(User $user, Category $category)
48+
public function delete(User $user, Category $category): bool
5949
{
6050
return $user->can('delete_category');
6151
}
6252

6353
/**
6454
* Determine whether the user can bulk delete.
65-
*
66-
* @return \Illuminate\Auth\Access\Response|bool
6755
*/
68-
public function deleteAny(User $user)
56+
public function deleteAny(User $user): bool
6957
{
7058
return $user->can('delete_any_category');
7159
}
7260

7361
/**
7462
* Determine whether the user can permanently delete.
75-
*
76-
* @return \Illuminate\Auth\Access\Response|bool
7763
*/
78-
public function forceDelete(User $user, Category $category)
64+
public function forceDelete(User $user, Category $category): bool
7965
{
8066
return $user->can('force_delete_category');
8167
}
8268

8369
/**
8470
* Determine whether the user can permanently bulk delete.
85-
*
86-
* @return \Illuminate\Auth\Access\Response|bool
8771
*/
88-
public function forceDeleteAny(User $user)
72+
public function forceDeleteAny(User $user): bool
8973
{
9074
return $user->can('force_delete_any_category');
9175
}
9276

9377
/**
9478
* Determine whether the user can restore.
95-
*
96-
* @return \Illuminate\Auth\Access\Response|bool
9779
*/
98-
public function restore(User $user, Category $category)
80+
public function restore(User $user, Category $category): bool
9981
{
10082
return $user->can('restore_category');
10183
}
10284

10385
/**
10486
* Determine whether the user can bulk restore.
105-
*
106-
* @return \Illuminate\Auth\Access\Response|bool
10787
*/
108-
public function restoreAny(User $user)
88+
public function restoreAny(User $user): bool
10989
{
11090
return $user->can('restore_any_category');
11191
}
11292

11393
/**
11494
* Determine whether the user can replicate.
115-
*
116-
* @return \Illuminate\Auth\Access\Response|bool
11795
*/
118-
public function replicate(User $user, Category $category)
96+
public function replicate(User $user, Category $category): bool
11997
{
12098
return $user->can('replicate_category');
12199
}
122100

123101
/**
124102
* Determine whether the user can reorder.
125-
*
126-
* @return \Illuminate\Auth\Access\Response|bool
127103
*/
128-
public function reorder(User $user)
104+
public function reorder(User $user): bool
129105
{
130106
return $user->can('reorder_category');
131107
}

0 commit comments

Comments
 (0)