├── public ├── css │ ├── app.css │ └── mock-api.css ├── favicon.ico ├── robots.txt ├── mix-manifest.json ├── js │ └── app.js.LICENSE.txt ├── .htaccess ├── web.config └── index.php ├── resources ├── sass │ └── app.scss ├── views │ ├── layout │ │ ├── partials │ │ │ ├── navbar.blade.php │ │ │ ├── header.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── head.blade.php │ │ │ └── scripts.blade.php │ │ ├── main.blade.php │ │ └── content.blade.php │ ├── mocks.blade.php │ ├── welcome.blade.php │ ├── watch.blade.php │ └── howToUse.blade.php ├── js │ ├── app.js │ ├── bootstrap.js │ └── componets │ │ ├── MockList.vue │ │ └── MockDetails.vue └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── database ├── .gitignore ├── seeds │ └── DatabaseSeeder.php ├── migrations │ ├── 2020_05_15_200520_create_mocks_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ └── 2014_10_12_000000_create_users_table.php └── factories │ └── UserFactory.php ├── .gitattributes ├── tests ├── TestCase.php ├── Unit │ └── ExampleTest.php ├── Feature │ └── ExampleTest.php ├── CreatesApplication.php └── Postman │ └── Mock API.postman_collection.json ├── .gitignore ├── .styleci.yml ├── .editorconfig ├── app ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── Authenticate.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── MainController.php │ │ ├── Controller.php │ │ └── APIs │ │ │ ├── MockManagementController.php │ │ │ └── MockResourceController.php │ ├── Resources │ │ ├── MockManagementInsert.php │ │ ├── MockResource.php │ │ ├── MockManagementList.php │ │ └── MockManagementDetails.php │ └── Kernel.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── User.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php └── Models │ └── Mock.php ├── README.md ├── webpack.mix.js ├── routes ├── channels.php ├── console.php ├── web.php └── api.php ├── server.php ├── config ├── cors.php ├── services.php ├── view.php ├── hashing.php ├── broadcasting.php ├── filesystems.php ├── queue.php ├── logging.php ├── cache.php ├── mail.php ├── auth.php ├── database.php ├── session.php └── app.php ├── .env.example ├── LICENSE ├── package.json ├── phpunit.xml ├── composer.json └── artisan /public/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css" 4 | } 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | Home 2 | How to use 3 | Mocks -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - unused_use 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /resources/views/layout/partials/header.blade.php: -------------------------------------------------------------------------------- 1 |
A mocking service made with Laravel.
Build your applications with help of this service.
Quickly build an effective pricing table for your potential customers with this Bootstrap example. It's built with default Bootstrap components and utilities with little customization.
15 |This mocking service has a very simple aproach. You only need to make a POST request for the endpoint you want and then make a GET request on the same endpoint to receive the same payload sent on POST.
7 |Your endpoint can be anything inside http://<Mocking Service Host>/api, for example, http://example.com/api/tstEndpoint.
MockAPiForceDelete = true query parameter.
55 | If you need to list all your endpoint or create multiples at once, you can use this service. Endpoint: /api/mgmt
/api/mgmt/{endpoint}./api/mgmt/tstEndpoint
69 |