humans / laravel-sandbox
Installs: 732
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/humans/laravel-sandbox
Requires
- illuminate/console: ^7.0 || ^8.0
- illuminate/support: ^7.0 || ^8.0
README
Laravel Sandbox is a package to easily add front-end support to database factories.
Installation
composer require humans/laravel-sandbox
Create your first Sandbox
Sandbox provides an artisan command to create a sandbox class. All files are added to your app/Sandbox
folder.
php artisan sandbox:make SalesDemo
Register your Sandbox in a Service Provider
The Sandboxes needs to be registered to something something.
Sandbox::register([ \App\Sandbox\SalesDemo::class, ]);
Add functionality to your Sandbox
use Auth; use Humans\Sandbox\Contracts\RefreshDatabase; use Humans\Sandbox\Sandbox; class SalesDemo extends Sandbox implements RefreshDatabase { public function run() { Auth::login( factory(\App\User::class)->create() ); return redirect()->route('home'); } }
Create a view for your sandboxes.
@foreach (Sandbox::sandboxes() as $sandbox) <h3>{{ $sandbox->title() }}</h3> <form method="POST" action="{{ route('sandbox.run') }}"> @csrf <input type="hidden" name="sandbox" value="{{ $sandbox->id() }} > <button>Run</button> </form> @endforeach
Make sure to add the prefix to the route name if you used a route name prefix.