neon / site
Neon CMS' website handler.
Requires
- php: ^8.1
- illuminate/contracts: ^10.0
- laravel/framework: ^10.0
- neon/attributable: *
- neon/model-uuid: ^1.0
- spatie/laravel-package-tools: ^1.14.0
- dev-main
- 3.0.0-alpha-11
- 3.0.0-alpha-10
- 3.0.0-alpha-9
- 3.0.0-alpha-8
- 3.0.0-alpha-7
- 3.0.0-alpha-6
- 3.0.0-alpha-5
- 3.0.0-alpha-4
- 3.0.0-alpha-3
- 3.0.0-alpha-2
- 3.0.0-alpha-1
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.4
- 1.0.1
- dev-NEON-53-Coming-back-with-the-simplifications
- dev-develop
- dev-hotfix/migrations-prefix
This package is auto-updated.
Last update: 2025-03-18 13:14:50 UTC
README
Handles sites to be able to run on it.
Requirements
"neon/model-uuid": "^1.0"
Install
Easily install the composer package:
composer require neon/site
Then there are two ways to use the site: You can store your settings both in config file or in database. It depends on your wishes, you can install package on both ways.
Install config files
Install database migrations
Then you should install database migrations by:
php artisan vendor:publish --provider=\"Neon\\Site\\NeonSiteServiceProvider\"
Usage
Site Middleware as of 2.0 does not add automatically to the array of middleware, so, if you want to use it, you should set up that for the routing:
use Neon\Site\Facades\Site; Site::patterns();
This command will define the Site rules for Laravel's router. After this definition you can use it for different cases:
use Neon\Site\Facades\Site; use Neon\Site\Http\Middleware\SiteMiddleware; Route::group([ 'domain' => Site::domain('domain_slug'), 'middleware' => SiteMiddleware::class ], function () { Route::group([ 'middleware' => [SiteMiddleware::class] ], function () { Route::get('/', function() { echo 'Hello '.app('site')->current()->locale.' /// DOMAIN'; }); }); });
If you want to separate routing by locale you can use it like this:
'prefix' => 'en',
You can also use site as prefixes:
use Neon\Site\Facades\Site; use Neon\Site\Http\Middleware\SiteMiddleware; Route::group([ 'prefix' => Site::prefix('prefix_slug'), 'middleware' => SiteMiddleware::class ], function () { ... });
SEO functions
Use favicon
Favicon could be set on admin UI. After that, yo can easily put it into the header right after the <title>
tag:
<head> <title>...</title> <x-neon-favicon/> ... </head>
Site dependent models
If you want something, like a Menu, what is rlated to the Site, then you just have to use the dependency trait.
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Neon\Attributable\Models\Traits\Attributable; //- You cab check this too... use Neon\Models\Traits\Uuid; use Neon\Site\Models\Traits\SiteDependencies; class AwesomeModel extends Model { use Attributable; use Uuid; use SiteDependencies; ... }
License
The MIT License (MIT). Please see License File for more information.