Notifications Migration for LUMEN
Create a migration file with this command: php artisan make:migration app-notificationsNext open that file in any editor and paste this code:
<?phpuse Illuminate\Support\Facades\Schema;use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class CreateNotificationsTable...