Skip to content

Instantly share code, notes, and snippets.

View richartkeil's full-sized avatar

Richard Keil richartkeil

View GitHub Profile
@richartkeil
richartkeil / NovaServiceProvider.php
Created October 12, 2018 08:39
Custom Card in Laravel Nova - Service Provider 3
<?php
use App\Nova\Cards\CustomCard;
// ...
protected function cards()
{
return [
new CustomCard,
@richartkeil
richartkeil / NovaServiceProvider.php
Last active October 12, 2018 08:31
Custom Card in Laravel Nova - Service Provider 2
<?php
// ...
protected function routes()
{
Nova::routes()
->withAuthenticationRoutes()
->withPasswordResetRoutes()
->register();
@richartkeil
richartkeil / NovaServiceProvider.php
Last active October 12, 2018 08:30
Custom Card in Laravel Nova - Service Provider 1
<?php
// ...
public function boot()
{
parent::boot();
// Let Nova know where your compiled assets will be.
Nova::serving(function (ServingNova $event) {