- Fixes a lot of Laravel new project issues:
- Webpack unable to compile due to wrong linked directories
- Major cleanup in base files
- Includes base controllers and assets:
- Bootstrap
- Font Awesome
- JQuery
- HTML & Form Laravel packages
doctrine/dbal
for migration column editing
- Includes PhpStorm autocompletion for Laravel
- PhpStorm needs the Laravel Plugin installed. Settings -> Plugins -> Search for Laravel Plugin -> Browse Repositories
- Run
npm run setup
to auto run all the commands usually ran on initial setup :rm -rf .git; git init
Removes this repo from the projectcp .env.example .env
Creates project environment filenpm install --no-bin-links
Installs all node dependencies (May need re-ran with sudo access)composer install
Installs other project dependenciesphp artisan key:generate
Creates project encryption keynpm run dev
Compiles CSS & JS
- Add your remote URL to the Git project
Email Template
@component('mail::layout')
@slot('header')
@component('mail::header', ['url' => config('app.url')])
Header Title
@endcomponent
@endslot
This is the email body
@component('mail::button', ['url' => '', 'color' => 'green'])
Button
@endcomponent
{{-- Cutom color button --}}
<table width="100%">
<tr>
<td style="text-align: center;">
<a href="# " class="button" target="_blank" style="background-color: #ff5620;padding: 10px 35px;font-size: 16px;">
Button
</a>
</td>
</tr>
</table>
@slot('footer')
@component('mail::footer')
© Copyright
@endcomponent
@endslot
@endcomponent