| Recommend this page to a friend! | 
| Info | Documentation | Screenshots | Reputation | Support forum | Blog | Links | 
| Ratings | Unique User Downloads | Download Rankings | ||||
| Not enough user ratings | Total: 37 | All time:  10,991 This week: 104 | ||||
| Version | License | PHP version | Categories | |||
| nova-quick-view 1.0 | The PHP License | 5 | PHP 5, Libraries, Content management | 

You can install the package in to a Laravel app that uses Nova via composer:
composer require php-junior/nova-quick-view
Add the following code :
public function fields(Request $request)
{
    return [
        ...
        NovaQuickView::make('Hello', function () {
            return '<p>Hi, there!</p>';
        })
        ->icon('el-icon-search')
        ->title('I am the title')
        ->direction('rtl') rtl / ltr / ttb / btt
        ...
    ];
}
If you need to render HTML content :
public function fields(Request $request)
{
    return [
        ...
        NovaQuickView::make('Hello', function () {
            return view('partials.hello', [
                'text' => 'Hi, there!'
            ])->render();
        })
        ->icon('el-icon-search')
        ->title('I am the title')
        ->direction('rtl') // rtl / ltr / ttb / btt
        ...
    ];
}
Please check icon list from element.
If you want to use fontawesome or others, import CSS file in layout.blade.php 
The MIT License (MIT). Please see License File for more information.
| Screenshots (3) | ||
| File | Role | Description | ||
|---|---|---|---|---|
| Data | Auxiliary data | |||
| Lic. | License text | |||
| Data | Auxiliary data | |||
| Doc. | Documentation | |||
| Data | Auxiliary data | |||
| / | dist | 
| File | Role | Description | ||
|---|---|---|---|---|
|    | 
Data | Auxiliary data | ||
| / | resources | / | js | 
| File | Role | Description | ||
|---|---|---|---|---|
|    | 
Data | Auxiliary data | ||
| / | resources | / | js | / | components | 
| File | Role | Description | ||
|---|---|---|---|---|
|    | 
Data | Auxiliary data | ||
| / | resources | / | js | / | components | / | _partials | 
| File | Role | Description | 
|---|---|---|
|    | 
Data | Auxiliary data | 
| / | src | 
| File | Role | Description | 
|---|---|---|
|    | 
Class | Class source | 
|    | 
Class | Class source | 
| The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. | 
| Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
| 100% | 
  | 
  | 
| Applications that use this package | 
 If you know an application of this package, send a message to the author to add a link here.