This is a list of of Validation methods, ordered by purpose, instead of just alphabetical order.
This allows you to quickly find the methods for the data you want to validate, instead of checking the list one by one.
| <?php | |
| namespace App\Console\Commands\Sqlite; | |
| use LogicException; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Database\DatabaseManager; | |
| use Illuminate\Database\Query\Expression; | |
| use Illuminate\Database\SQLiteConnection; | |
| use Illuminate\Database\ConnectionInterface; |
| <?php | |
| namespace App\DynamicModels; | |
| use Illuminate\Eloquent\Model; | |
| abstract class DynamicModel extends Model | |
| { | |
| /** | |
| * Donnection data to inject into the config |
This is a list of Collection methods, ordered by purpose, instead of just an alphabetical order.
This allows you to quickly find the methods for the action you want to do, instead of checking the list one by one.
| <?php | |
| namespace App\Listeners; | |
| use App\Ticket; | |
| use App\Events\TicketSold; | |
| use App\SerialProcessor\SerialProcessor; | |
| use DarkGhostHunter\Laralock\HandlesSlot; | |
| use DarkGhostHunter\Laralock\Contracts\Lockable; | |
| use Illuminate\Bus\Queueable; |
| <?php | |
| namespace App\Listeners; | |
| use App\Ticket; | |
| use App\Events\TicketSold; | |
| use Ticketer\TicketingApi; | |
| use Illuminate\Bus\Queueable; | |
| use Illuminate\Queue\SerializesModels; | |
| use App\SerialProcessor\SerialProcessor; |
| @servers(['web' => ['[email protected]'] ]); | |
| @setup | |
| $current_dir = '/srv/www/project'; | |
| @endsetup | |
| @story('deploy') | |
| install | |
| optimize | |
| publish |
| <?php | |
| class Car | |
| { | |
| protected $color = 'white'; | |
| protected Engine $engine; | |
| public function __serialize() | |
| { |
| <?php | |
| namespace Illuminate\Foundation\Validation; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Contracts\Validation\Factory; | |
| use Illuminate\Validation\ValidationException; | |
| trait ValidatesRequests | |
| { |
| <?php | |
| namespace Illuminate\Foundation\Bus; | |
| use Illuminate\Contracts\Bus\Dispatcher; | |
| trait DispatchesJobs | |
| { | |
| /** | |
| * Dispatch a job to its appropriate handler. |