Skip to content

Commit

Permalink
Merge pull request #8 from butcherman/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
butcherman committed Oct 2, 2022
2 parents f687ca0 + ca29b64 commit e4655e2
Show file tree
Hide file tree
Showing 15 changed files with 2,206 additions and 1,427 deletions.
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

19 changes: 10 additions & 9 deletions README.md
Expand Up @@ -2,9 +2,6 @@

A simple collection of Artisan commands to help make your development troubleshooting a little easier.

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/butcherman/artisan-dev-commands/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/butcherman/artisan-dev-commands/?branch=master)
[![Build Status](https://scrutinizer-ci.com/g/butcherman/artisan-dev-commands/badges/build.png?b=master)](https://scrutinizer-ci.com/g/butcherman/artisan-dev-commands/build-status/master)
[![Build Status](https://travis-ci.com/butcherman/artisan-dev-commands.svg?branch=master)](https://travis-ci.com/butcherman/artisan-dev-commands)
[![GitHub release](https://img.shields.io/github/release/Butcherman/artisan-dev-commands)](https://GitHub.com/Butcherman/artisan-dev-commands/releases/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Latest Stable Version](https://poser.pugx.org/butcherman/artisan-dev-commands/v/stable)](https://packagist.org/packages/butcherman/artisan-dev-commands)
Expand All @@ -24,8 +21,6 @@ composer require butcherman/artisan-dev-commands --dev

### Log File Commands

Note: only the Single Log and Daily Log channels are supported at this time

Clear the contents of the current log file while keeping the file itself in tact:

```php
Expand All @@ -38,19 +33,25 @@ Delete all log files in the Log directory (will only remove files with the .log
php artisan log:purge
```

Create a new dedicated class called a Domain in a separate folder under App\Domains that can be reused throughout the application
Create a new Laravel Trait in the app/Traits folder

```php
php artisan make:action ActionName # Note - to put the action in a sub folder, enter the folder name followed by the action name
php artisan make:trait TraitName // or Folder/TraitName
```

Create a new Vue page located at /resources/js/Pages with a basic Vue template. Adding a new Vue page in a sub folder uses the dot (.) syntax similar to the View syntax

```php
php artisan make:page Folder.pageName
php artisan make:page Folder.pageName // To add the component using the Vue's Options API, add the --optionsApi flag
```

Create a new Vue component located at /resources/js/Components with a basic Vue template. Adding a new Vue component in a sub folder uses the dot (.) syntax similar to the View syntax

```php
php artisan make:vuecomponent Folder.componentName // To add the component using the Vue's Options API, add the --optionsApi flag
```

## Copyright © 2019-2021 Butcherman
## Copyright © 2019-2022 Butcherman

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
Expand Down

0 comments on commit e4655e2

Please sign in to comment.