repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Like.php | app/Like.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Like extends Model
{
public function user()
{
return $this->belongsTo('App\User');
}
public function post()
{
return $this->belongsTo('App\Post');
}
}
| php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Post.php | app/Post.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
public function user()
{
return $this->belongsTo('App\User');
}
public function likes()
{
return $this->hasMany('App\Like');
}
}
| php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Jobs/Job.php | app/Jobs/Job.php | <?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
abstract class Job
{
/*
|--------------------------------------------------------------------------
| Queueable Jobs
|--------------------------------------------------------------------------
|
| This job base class provides a central l... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Exceptions/Handler.php | app/Exceptions/Handler.php | <?php
namespace App\Exceptions;
use Exception;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Illuminate\Foundation\Validation\ValidationException;
use Symfony\Component\HttpKernel\Exception\NotF... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/routes.php | app/Http/routes.php | <?php
/*
|--------------------------------------------------------------------------
| Routes File
|--------------------------------------------------------------------------
|
| Here is where you will register all of the routes in an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| an... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Kernel.php | app/Http/Kernel.php | <?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* These middleware are run during every request to your application.
*
* @var array
*/
protected $middleware =... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Requests/Request.php | app/Http/Requests/Request.php | <?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
abstract class Request extends FormRequest
{
//
}
| php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Controllers/PostController.php | app/Http/Controllers/PostController.php | <?php
namespace App\Http\Controllers;
use App\Like;
use App\Post;
use Illuminate\Support\Facades\Auth;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Session;
class PostController extends Controller
{
public function getDashboard()
{
$posts = Post::orderBy('created_at', 'desc')->get();
... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Controllers/Controller.php | app/Http/Controllers/Controller.php | <?php
namespace App\Http\Controllers;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
class Controller extends BaseController
{
use AuthorizesReques... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Controllers/UserController.php | app/Http/Controllers/UserController.php | <?php
namespace App\Http\Controllers;
use App\User;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Storage;
class UserController extends Controller
{
public function postSignUp(Request $request)
... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Middleware/Authenticate.php | app/Http/Middleware/Authenticate.php | <?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Auth;
class Authenticate
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null $guard
* @return mixed
*/
public fun... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Middleware/RedirectIfAuthenticated.php | app/Http/Middleware/RedirectIfAuthenticated.php | <?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Auth;
class RedirectIfAuthenticated
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null $guard
* @return mixed
*/
... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Middleware/EncryptCookies.php | app/Http/Middleware/EncryptCookies.php | <?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
class EncryptCookies extends BaseEncrypter
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}
| php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Http/Middleware/VerifyCsrfToken.php | app/Http/Middleware/VerifyCsrfToken.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
];
}
| php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Console/Kernel.php | app/Console/Kernel.php | <?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
Commands\Insp... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Console/Commands/Inspire.php | app/Console/Commands/Inspire.php | <?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;
class Inspire extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'inspire';
/**
* The console command descript... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Providers/RouteServiceProvider.php | app/Providers/RouteServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Routing\Router;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to the controller routes in your routes file.
*
* In addition, it ... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Providers/EventServiceProvider.php | app/Providers/EventServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Providers/AppServiceProvider.php | app/Providers/AppServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services.
*
... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Providers/AuthServiceProvider.php | app/Providers/AuthServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Contracts\Auth\Access\Gate as GateContract;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/app/Events/Event.php | app/Events/Event.php | <?php
namespace App\Events;
abstract class Event
{
//
}
| php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/bootstrap/app.php | bootstrap/app.php | <?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of La... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/bootstrap/autoload.php | bootstrap/autoload.php | <?php
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for ... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/tests/TestCase.php | tests/TestCase.php | <?php
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* The base URL to use while testing the application.
*
* @var string
*/
protected $baseUrl = 'http://localhost';
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/tests/ExampleTest.php | tests/ExampleTest.php | <?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic functional test example.
*
* @return void
*/
public function testBasic... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/public/index.php | public/index.php | <?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylorotwell@gmail.com>
*/
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/app.php | config/app.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
|
| This value determines the "environment" your application is currently
| running in. This m... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/session.php | config/session.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option controls the default session "driver" that will be used on
| requests. By defau... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/queue.php | config/queue.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Driver
|--------------------------------------------------------------------------
|
| The Laravel queue API supports a variety of back-ends via an unified
| API, giving you conven... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/cache.php | config/cache.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching li... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/view.php | config/view.php | <?php
return [
/*
|--------------------------------------------------------------------------
| View Storage Paths
|--------------------------------------------------------------------------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/database.php | config/database.php | <?php
return [
/*
|--------------------------------------------------------------------------
| PDO Fetch Style
|--------------------------------------------------------------------------
|
| By default, database results will be returned as instances of the PHP
| stdClass object; however, ... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/services.php | config/services.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, ... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/filesystems.php | config/filesystems.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. A... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/mail.php | config/mail.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Mail Driver
|--------------------------------------------------------------------------
|
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may s... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/compile.php | config/compile.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Additional Compiled Classes
|--------------------------------------------------------------------------
|
| Here you may specify additional classes to include in the compiled file
| generated by... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/broadcasting.php | config/broadcasting.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an even... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/config/auth.php | config/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for y... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/database/seeds/DatabaseSeeder.php | database/seeds/DatabaseSeeder.php | <?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
// $this->call(UserTableSeeder::class);
}
}
| php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/database/factories/ModelFactory.php | database/factories/ModelFactory.php | <?php
/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| Here you may define all of your model factories. Model factories give
| you a convenient way to create models for testing and seeding yo... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/database/migrations/2016_03_15_093359_create_likes_table.php | database/migrations/2016_03_15_093359_create_likes_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateLikesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('likes', function (Blueprint $table) {
$table... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/database/migrations/2016_02_12_120658_create_posts_table.php | database/migrations/2016_02_12_120658_create_posts_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePostsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/database/migrations/2016_01_28_094202_create_users_table.php | database/migrations/2016_01_28_094202_create_users_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/lang/en/passwords.php | resources/lang/en/passwords.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are gi... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/lang/en/pagination.php | resources/lang/en/pagination.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pag... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/lang/en/validation.php | resources/lang/en/validation.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator ... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/lang/en/auth.php | resources/lang/en/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages t... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/views/welcome.blade.php | resources/views/welcome.blade.php | @extends('layouts.master')
@section('title')
Welcome!
@endsection
@section('content')
@include('includes.message-block')
<div class="row">
<div class="col-md-6">
<h3>Sign Up</h3>
<form action="{{ route('signup') }}" method="post">
<div class="form-group {{ $... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/views/dashboard.blade.php | resources/views/dashboard.blade.php | @extends('layouts.master')
@section('content')
@include('includes.message-block')
<section class="row new-post">
<div class="col-md-6 col-md-offset-3">
<header><h3>What do you have to say?</h3></header>
<form action="{{ route('post.create') }}" method="post">
<di... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/views/account.blade.php | resources/views/account.blade.php | @extends('layouts.master')
@section('title')
Account
@endsection
@section('content')
<section class="row new-post">
<div class="col-md-6 col-md-offset-3">
<header><h3>Your Account</h3></header>
<form action="{{ route('account.save') }}" method="post" enctype="multipart/form-dat... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/views/errors/503.blade.php | resources/views/errors/503.blade.php | <!DOCTYPE html>
<html>
<head>
<title>Be right back.</title>
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
<style>
html, body {
height: 100%;
}
body {
margin: 0;
... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/views/includes/message-block.blade.php | resources/views/includes/message-block.blade.php | @if(count($errors) > 0)
<div class="row">
<div class="col-md-4 col-md-offset-4 error">
<ul>
@foreach($errors->all() as $error)
<li>{{$error}}</li>
@endforeach
</ul>
</div>
</div>
@endif
@if(Session::has('message'))
<... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/views/includes/header.blade.php | resources/views/includes/header.blade.php | <header>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
mschwarzmueller/laravel-basics-youtube | https://github.com/mschwarzmueller/laravel-basics-youtube/blob/1295312ab4e0b26f839fb161e9aedf9044559422/resources/views/layouts/master.blade.php | resources/views/layouts/master.blade.php | <!DOCTYPE html>
<html>
<head>
<title>@yield('title')</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="{{ URL::t... | php | MIT | 1295312ab4e0b26f839fb161e9aedf9044559422 | 2026-01-05T05:04:32.355687Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/PublishedFlagScope.php | src/Scopes/Classic/PublishedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/AcceptedAtScope.php | src/Scopes/Classic/AcceptedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/KeptFlagScope.php | src/Scopes/Classic/KeptFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/ApprovedFlagScope.php | src/Scopes/Classic/ApprovedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/InvitedFlagScope.php | src/Scopes/Classic/InvitedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/InvitedAtScope.php | src/Scopes/Classic/InvitedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/AcceptedFlagScope.php | src/Scopes/Classic/AcceptedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/ActiveFlagScope.php | src/Scopes/Classic/ActiveFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/VerifiedFlagScope.php | src/Scopes/Classic/VerifiedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/PublishedAtScope.php | src/Scopes/Classic/PublishedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/VerifiedAtScope.php | src/Scopes/Classic/VerifiedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Classic/ApprovedAtScope.php | src/Scopes/Classic/ApprovedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Classic;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/EndedFlagScope.php | src/Scopes/Inverse/EndedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/ArchivedFlagScope.php | src/Scopes/Inverse/ArchivedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/DraftedAtScope.php | src/Scopes/Inverse/DraftedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/ExpiredFlagScope.php | src/Scopes/Inverse/ExpiredFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/ClosedFlagScope.php | src/Scopes/Inverse/ClosedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/DraftedFlagScope.php | src/Scopes/Inverse/DraftedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/ArchivedAtScope.php | src/Scopes/Inverse/ArchivedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/ClosedAtScope.php | src/Scopes/Inverse/ClosedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/ExpiredAtScope.php | src/Scopes/Inverse/ExpiredAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Scopes/Inverse/EndedAtScope.php | src/Scopes/Inverse/EndedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Scopes\Inverse;
use Illuminate\Databas... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasKeptFlagBehavior.php | src/Traits/Classic/HasKeptFlagBehavior.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasKeptFlagBehav... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasVerifiedFlag.php | src/Traits/Classic/HasVerifiedFlag.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasVerifiedFlag
... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasAcceptedAtHelpers.php | src/Traits/Classic/HasAcceptedAtHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Illuminate\Support... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasApprovedAtHelpers.php | src/Traits/Classic/HasApprovedAtHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Illuminate\Support... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasInvitedFlagHelpers.php | src/Traits/Classic/HasInvitedFlagHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasInvitedFlagHe... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasInvitedFlag.php | src/Traits/Classic/HasInvitedFlag.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasInvitedFlag
{... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasPublishedAt.php | src/Traits/Classic/HasPublishedAt.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasPublishedAt
{... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasActiveFlagHelpers.php | src/Traits/Classic/HasActiveFlagHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasActiveFlagHel... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasApprovedFlag.php | src/Traits/Classic/HasApprovedFlag.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasApprovedFlag
... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasVerifiedAtHelpers.php | src/Traits/Classic/HasVerifiedAtHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Illuminate\Support... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasActiveFlagScope.php | src/Traits/Classic/HasActiveFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Cog\Flag\Scopes\Cl... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasAcceptedAt.php | src/Traits/Classic/HasAcceptedAt.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasAcceptedAt
{
... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasApprovedFlagHelpers.php | src/Traits/Classic/HasApprovedFlagHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasApprovedFlagH... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasPublishedFlagScope.php | src/Traits/Classic/HasPublishedFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Cog\Flag\Scopes\Cl... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasPublishedFlag.php | src/Traits/Classic/HasPublishedFlag.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasPublishedFlag... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasAcceptedFlag.php | src/Traits/Classic/HasAcceptedFlag.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasAcceptedFlag
... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasPublishedAtHelpers.php | src/Traits/Classic/HasPublishedAtHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Illuminate\Support... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasKeptFlagHelpers.php | src/Traits/Classic/HasKeptFlagHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Cog\Flag\Scopes\Cl... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasVerifiedAt.php | src/Traits/Classic/HasVerifiedAt.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasVerifiedAt
{
... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasKeptFlag.php | src/Traits/Classic/HasKeptFlag.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasKeptFlag
{
... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasVerifiedFlagHelpers.php | src/Traits/Classic/HasVerifiedFlagHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasVerifiedFlagH... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasKeptFlagScope.php | src/Traits/Classic/HasKeptFlagScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Cog\Flag\Scopes\Cl... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasApprovedAtScope.php | src/Traits/Classic/HasApprovedAtScope.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
use Cog\Flag\Scopes\Cl... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
cybercog/laravel-eloquent-flag | https://github.com/cybercog/laravel-eloquent-flag/blob/b78de1f45726511b73723b7f017a4a7f833c2546/src/Traits/Classic/HasAcceptedFlagHelpers.php | src/Traits/Classic/HasAcceptedFlagHelpers.php | <?php
/*
* This file is part of Laravel Eloquent Flag.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Cog\Flag\Traits\Classic;
trait HasAcceptedFlagH... | php | MIT | b78de1f45726511b73723b7f017a4a7f833c2546 | 2026-01-05T05:04:43.856771Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.