sukohi/ghost

A Laravel package to generate a dummy model instance.
14
Install
composer require sukohi/ghost
Latest Version:2.0.0
License:MIT
Last Updated:Jul 14, 2016
Links: GitHub  ·  Packagist
Maintainer: Sukohi

Ghost

A Laravel package to generate a dummy model instance.

Installation

Execute composer command.

composer require sukohi/ghost:2.*

Register the service provider in app.php

'providers' => [
    ...Others...,
    Sukohi\Ghost\GhostServiceProvider::class,
]

Also alias

'aliases' => [
    ...Others...,
    'Ghost'   => Sukohi\Ghost\Facades\Ghost::class,
]

Usage

$dummy_model = \Ghost::make();
echo $dummy_model->title;       // (Empty)
echo $dummy_model->description; // (Empty)
echo $dummy_model->created_at;  // (Empty)

License

This package is licensed under the MIT License.

Copyright 2016 Sukohi Kuhoh

Related Packages

erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

622,487,850 9,703
laravel/framework

The Laravel Framework.

568,663,231 34,884
laravel/tinker

Powerful REPL for the Laravel framework.

478,440,860 7,440