// Built-in types
$variable = null; // null type
// Scalar types
$boolVar = true; // bool type
$intVar = 42; // int type
$floatVar = 3.14; // float type
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 | |
Artisan::command('generate-tests', function () { | |
// Define the base path where class files are located | |
$files = File::allFiles(base_path('app/Classes')); | |
foreach ($files as $file) { | |
// Get the relative path of the current class file and apply string manipulations | |
$path = str($file->getRelativePathname()) | |
->replace('.php', '') // Remove the .php extension | |
->replace('/', '\\') // Replace directory slashes with namespace slashes |
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 | |
// In Laravel, we have the $with property to automatically load a relationship every time. | |
// However, selecting a specific column by default for every model query doesn't seem possible... | |
// but here's a hack I found! | |
class Post extends Model | |
{ | |
// To automatically load the 'author' relationship on every query | |
protected $with = ['author']; |
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 | |
use App\Enums\PostStatus; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\Attributes\Attribute; | |
class Post extends Model | |
{ | |
// We can easily cast the 'status' column to an enum instance |
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 | |
use App\Models\Team; | |
use App\Models\User; | |
use Database\Seeders\RoleAndPermissionSeeder; | |
use Database\Seeders\TeamSeeder; | |
use Database\Seeders\UserSeeder; | |
use function Pest\Laravel\actingAs; | |
use function Pest\Laravel\get; |
If you encounter caching issues with your @teleport Livewire/Blade directive after running php artisan view:cache, you may notice problems appearing instead of the expected compilation.
To resolve this issue, manually add compilation to the Blade directive.
class AppServiceProvider extends ServiceProvider
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\Listeners; | |
use Illuminate\Events\Dispatcher; | |
use Illuminate\Foundation\Http\Events\RequestHandled; | |
use Illuminate\Console\Events\CommandFinished; | |
use Illuminate\Http\Client\Events\ResponseReceived; | |
use Illuminate\Support\Facades\Log; |
NewerOlder