Skip to content

Instantly share code, notes, and snippets.

View vivekwaah's full-sized avatar
🐺

Vivek Kumar vivekwaah

🐺
View GitHub Profile
@vivekwaah
vivekwaah / ShowBladeTree.php
Last active April 16, 2024 09:56
Display hierarchical tree structure of blade files
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Str;
class ShowBladeTree extends Command
{
@vivekwaah
vivekwaah / InviteMail.php
Last active May 22, 2021 14:37
Outlook invitation from Laravel
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use App\Traits\Monday\Monday;
use Illuminate\Support\Facades\Mail;