This file contains hidden or 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
// Check there's nothing that hasn't been committed and synced | |
git status; | |
// Push to the remote to make sure it has a record of any local commits/branches | |
git push; | |
// Now, prune your local repos | |
git remote prune origin; | |
// And clean up any tracked branches not in the list of remotes (https://stackoverflow.com/questions/13064613/how-to-prune-local-tracking-branches-that-do-not-exist-on-remote-anymore) |
This file contains hidden or 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\Models; | |
use Illuminate\Database\Eloquent\Collection as EloquentCollection; | |
use Illuminate\Database\Eloquent\Model as IlluminateModel; | |
use Illuminate\Pagination\AbstractPaginator; | |
class Model extends IlluminateModel | |
{ |