gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Services\Payment\PaymentDetails; | |
use App\Actions\PaymentAction; | |
use App\Models\Order; | |
class CheckoutController extends Controller | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Http\Controllers\Controller; | |
use App\Jobs\SendPromotionalSaleEmailJob; | |
use App\Models\User; | |
use Illuminate\Http\Request; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1- add 'spa-footer' class to spa pages only not [index] page | |
2- remove 'container' class from div which in spa vote, | |
specifically after this [div] series [ vote-page => vote-main => inner-vote => 'container' ] | |
don't forget remove it from each team section | |
3- also, in js file, reduce number of items that will show in page to '2' items, specifically in 'owl-carousel-vote' class | |
4- to reduce space between 'add new post' section and 'posts' section, | |
add this code in css file to '.timeline-articles' class => [ margin-top: -60px; ] |