CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

20 February, 2021

Laravel Cheatsheep Master

 Programing Coderfunda     February 20, 2021     Cheat Sheet-Laravel     No comments   

 

Artisan 

// Added in 5.1.11:http://laravel.com/docs/authorization#creating-policiesphp artisan make:policy PostPolicy
// Displays help for a given commandphp artisan --help OR -h
// Do not output any messagephp artisan --quiet OR -q
// Display this application versionphp artisan --version OR -V
// Do not ask any interactive questionphp artisan --no-interaction OR -n
// Force ANSI outputphp artisan --ansi
// Disable ANSI outputphp artisan --no-ansi
// The environment the command should run underphp artisan --env
// -v|vv|vvv Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debugphp artisan --verbose
// Remove the compiled class filephp artisan clear-compiled
// Display the current framework environmentphp artisan env// Displays help for a commandphp artisan help// Lists commandsphp artisan list// Interact with your applicationphp artisan tinker// Put the application into maintenance modephp artisan down// Bring the application out of maintenance modephp artisan up// Optimize the framework for better performance// --force Force the compiled class file to be written.// --psr Do not optimize Composer dump-autoload.php artisan optimize [--force] [--psr]
// Serve the application on the PHP development serverphp artisan serve// Change the default portphp artisan serve --port 8080
// Get it to work outside localhostphp artisan serve --host 0.0.0.0
// Set the application namespacephp artisan app:name namespace
// Flush expired password reset tokensphp artisan auth:clear-resets
// Flush the application cachephp artisan cache:clear
// Create a migration for the cache database tablephp artisan cache:table
// Create a cache file for faster configuration loadingphp artisan config:cache
// Remove the configuration cache filephp artisan config:clear
// In program$exitCode = Artisan::call('config:cache');
// Seed the database with records// --class The class name of the root seeder (default: "DatabaseSeeder")// --database The database connection to seed// --force Force the operation to run when in production.php artisan db:seed [--class[="..."]] [--database[="..."]] [--force]

// Generate the missing events and handlers based on registrationphp artisan event:generate

// Create a new command handler class// --command The command class the handler handles.php artisan handler:command [--command="..."] name
// Create a new event handler class// --event The event class the handler handles.// --queued Indicates the event handler should be queued.php artisan handler:event [--event="..."] [--queued] name

// Set the application keyphp artisan key:generate

// By default, this creates a self-handling command that isn't pushed to the queue.// Pass this the --handler flag to generate a handler, and the --queued flag to make it queued.php artisan make:command [--handler] [--queued] name
// Create a new Artisan command// --command The terminal command that should be assigned. (default: "command:name")make:console [--command[="..."]] name
// Create a new resourceful controller// --plain Generate an empty controller class.php artisan make:controller [--plain] name
php artisan make
:controller App\\Admin\\Http\\Controllers\\DashboardController
// Create a new event classphp artisan make:event name
// Create a new middleware classphp artisan make:middleware name
// Create a new migration file// --create The table to be created.// --table The table to migrate.php artisan make:migration [--create[="..."]] [--table[="..."]] name
// Create a new Eloquent model classphp artisan make:model name
// Create a new service provider classphp artisan make:provider name
// Create a new form request classphp artisan make:request name
// Database migrations// --database The database connection to use.// --force Force the operation to run when in production.// --path The path of migrations files to be executed.// --pretend Dump the SQL queries that would be run.// --seed Indicates if the seed task should be re-run.php artisan migrate [--database[="..."]] [--force] [--path[="..."]] [--pretend] [--seed]
// Create the migration repositoryphp artisan migrate:install [--database[="..."]]
// Create a new migration file// --seeder The class name of the root seeder.php artisan migrate:refresh [--database[="..."]] [--force] [--seed] [--seeder[="..."]]
// Rollback all database migrations// --pretend Dump the SQL queries that would be run.php artisan migrate:reset [--database[="..."]] [--force] [--pretend]
// Rollback the last database migrationphp artisan migrate:rollback [--database[="..."]] [--force] [--pretend]
// Show a list of migrations up/downphp artisan migrate:status
// Create a migration for the queue jobs database tablephp artisan queue:table
// Listen to a given queue// --queue The queue to listen on// --delay Amount of time to delay failed jobs (default: 0)// --memory The memory limit in megabytes (default: 128)// --timeout Seconds a job may run before timing out (default: 60)// --sleep Seconds to wait before checking queue for jobs (default: 3)// --tries Number of times to attempt a job before logging it failed (default: 0)php artisan queue:listen [--queue[="..."]] [--delay[="..."]] [--memory[="..."]] [--timeout[="..."]] [--sleep[="..."]] [--tries[="..."]] [connection]
// List all of the failed queue jobsphp artisan queue:failed
// Create a migration for the failed queue jobs database tablephp artisan queue:failed-table
// Flush all of the failed queue jobsphp artisan queue:flush
// Delete a failed queue jobphp artisan queue:forget
// Restart queue worker daemons after their current jobphp artisan queue:restart
// Retry a failed queue job(id: The ID of the failed job)php artisan queue:retry id
// Subscribe a URL to an Iron.io push queue// queue: The name of Iron.io queue.// url: The URL to be subscribed.// --type The push type for the queue.php artisan queue:subscribe [--type[="..."]] queue url
// Process the next job on a queue// --queue The queue to listen on// --daemon Run the worker in daemon mode// --delay Amount of time to delay failed jobs (default: 0)// --force Force the worker to run even in maintenance mode// --memory The memory limit in megabytes (default: 128)// --sleep Number of seconds to sleep when no job is available (default: 3)// --tries Number of times to attempt a job before logging it failed (default: 0)php artisan queue:work [--queue[="..."]] [--daemon] [--delay[="..."]] [--force] [--memory[="..."]] [--sleep[="..."]] [--tries[="..."]] [connection]

// Create a route cache file for faster route registrationphp artisan route:cache
// Remove the route cache filephp artisan route:clear
// List all registered routesphp artisan route:list

// Run the scheduled commandsphp artisan schedule:run

// Create a migration for the session database tablephp artisan session:table

// Publish any publishable assets from vendor packages// --force Overwrite any existing files.// --provider The service provider that has assets you want to publish.// --tag The tag that has assets you want to publish.php artisan vendor:publish [--force] [--provider[="..."]] [--tag[="..."]]
php artisan tail
[--path[="..."]] [--lines[="..."]] [connection]

Composer 

composer create-project laravel/laravel folder_name
composer install
composer update
composer
dump-autoload [--optimize]
composer
self-update
composer
require [options] [--] [vender/packages]...

Config 

Config::get('app.timezone');
//get with Default valueConfig::get('app.timezone', 'UTC');
//set ConfigurationConfig::set('database.default', 'sqlite');

Route  

Route::get('foo', function(){});
Route::get('foo', 'ControllerName@function');
Route::controller('foo', 'FooController');
RESTful Controllers 
Route::resource('posts','PostsController');
//Specify a subset of actions to handle on the routeRoute::resource('photo', 'PhotoController',['only' => ['index', 'show']]);
Route::resource('photo', 'PhotoController',['except' => ['update', 'destroy']]);
Triggering Errors 
App::abort(404);
$handler
->missing(...) in ErrorServiceProvider::boot();
throw new NotFoundHttpException;
Route Parameters 
Route::get('foo/{bar}', function($bar){});
Route::get('foo/{bar?}', function($bar = 'bar'){});
HTTP Verbs
Route::any('foo', function(){});
Route::post('foo', function(){});
Route::put('foo', function(){});
Route::patch('foo', function(){});
Route::delete('foo', function(){});
// RESTful actionsRoute::resource('foo', 'FooController');
// Registering A Route For Multiple VerbsRoute::match(['get', 'post'], '/', function(){});
Secure Routes(TBD)
Route::get('foo', array('https', function(){}));
Route Constraints
Route::get('foo/{bar}', function($bar){})
->where('bar', '[0-9]+');
Route::get('foo/{bar}/{baz}', function($bar, $baz){})
->where(array('bar' => '[0-9]+', 'baz' => '[A-Za-z]'))
// Set a pattern to be used across routesRoute::pattern('bar', '[0-9]+')
HTTP Middleware 
// Assigning Middleware To RoutesRoute::get('admin/profile', ['middleware' => 'auth', function(){}]);
Named Routes
Route::currentRouteName();
Route::get('foo/bar', array('as' => 'foobar', function(){}));
Route::get('user/profile', [
'as' => 'profile', 'uses' => 'UserController@showProfile'
]);
$url
= route('profile');
$redirect
= redirect()->route('profile');
Route Prefixing
Route::group(['prefix' => 'admin'], function()
{
Route::get('users', function(){
return 'Matches The "/admin/users" URL';
});
});
Route Namespacing
// This route group will carry the namespace 'Foo\Bar'Route::group(array('namespace' => 'Foo\Bar'), function(){})
Sub-Domain Routing
// {sub} will be passed to the closureRoute::group(array('domain' => '{sub}.example.com'), function(){});

Environment 

$environment = app()->environment();
$environment
= App::environment();
$environment
= $app->environment();
// The environment is localif ($app->environment('local')){}
// The environment is either local OR staging...if ($app->environment('local', 'staging')){}

Log 

// The logger provides the seven logging levels defined in RFC 5424:// debug, info, notice, warning, error, critical, and alert.Log::info('info');
Log::info('info',array('context'=>'additional info'));
Log::error('error');
Log::warning('warning');
// get monolog instanceLog::getMonolog();
// add listenerLog::listen(function($level, $message, $context) {});
Query Logging 
// enable the logDB::connection()->enableQueryLog();
// get an array of the executed queriesDB::getQueryLog();

URL  

URL::full();
URL
::current();
URL
::previous();
URL
::to('foo/bar', $parameters, $secure);
URL
::action('NewsController@item', ['id'=>123]);
// need be in appropriate namespaceURL::action('Auth\AuthController@logout');
URL
::action('FooController@method', $parameters, $absolute);
URL
::route('foo', $parameters, $absolute);
URL
::secure('foo/bar', $parameters);
URL
::asset('css/foo.css', $secure);
URL
::secureAsset('css/foo.css');
URL
::isValidUrl('http://example.com');
URL
::getRequest();
URL
::setRequest($request);

Event 

Event::fire('foo.bar', array($bar));
// Register an event listener with the dispatcher.// void listen(string|array $events, mixed $listener, int $priority)Event::listen('App\Events\UserSignup', function($bar){});
Event::listen('foo.*', function($bar){});
Event::listen('foo.bar', 'FooHandler', 10);
Event::listen('foo.bar', 'BarHandler', 5);
// Stopping The Propagation Of An Event// You may do so using by returning false from your handler.Event::listen('foor.bar', function($event){ return false; });
Event::subscribe('UserEventHandler');

DB 

Basic Database Usage
DB::connection('connection_name');
// Running A Select Query$results = DB::select('select * from users where id = ?', [1]);
$results
= DB::select('select * from users where id = :id', ['id' => 1]);
// Running A General StatementDB::statement('drop table users');
// Listening For Query EventsDB::listen(function($sql, $bindings, $time){ code_here; });
// Database TransactionsDB::transaction(function()
{
DB
::table('users')->update(['votes' => 1]);
DB
::table('posts')->delete();
});
DB
::beginTransaction();
DB
::rollback();
DB
::commit();
Query Builder 
// Retrieving All Rows From A TableDB::table('name')->get();
// Chunking Results From A TableDB::table('users')->chunk(100, function($users)
{
foreach ($users as $user)
{
//}
});
// Retrieving A Single Row From A Table$user = DB::table('users')->where('name', 'John')->first();
DB
::table('name')->first();
// Retrieving A Single Column From A Row$name = DB::table('users')->where('name', 'John')->pluck('name');
DB
::table('name')->pluck('column');
// Retrieving A List Of Column Values$roles = DB::table('roles')->lists('title');
$roles
= DB::table('roles')->lists('title', 'name');
// Specifying A Select Clause$users = DB::table('users')->select('name', 'email')->get();
$users
= DB::table('users')->distinct()->get();
$users
= DB::table('users')->select('name as user_name')->get();
// Adding A Select Clause To An Existing Query$query = DB::table('users')->select('name');
$users
= $query->addSelect('age')->get();
// Using Where Operators$users = DB::table('users')->where('votes', '>', 100)->get();
$users
= DB::table('users')
->where('votes', '>', 100)
->orWhere('name', 'John')
->get();
$users
= DB::table('users')
->whereBetween('votes', [1, 100])->get();
$users
= DB::table('users')
->whereNotBetween('votes', [1, 100])->get();
$users
= DB::table('users')
->whereIn('id', [1, 2, 3])->get();
$users
= DB::table('users')
->whereNotIn('id', [1, 2, 3])->get();
$users
= DB::table('users')
->whereNull('updated_at')->get();
DB
::table('name')->whereNotNull('column')->get();
// Dynamic Where Clauses$admin = DB::table('users')->whereId(1)->first();
$john
= DB::table('users')
->whereIdAndEmail(2, 'john@doe.com')
->first();
$jane
= DB::table('users')
->whereNameOrAge('Jane', 22)
->first();
// Order By, Group By, And Having$users = DB::table('users')
->orderBy('name', 'desc')
->groupBy('count')
->having('count', '>', 100)
->get();
DB
::table('name')->orderBy('column')->get();
DB
::table('name')->orderBy('column','desc')->get();
DB
::table('name')->having('count', '>', 100)->get();
// Offset & Limit$users = DB::table('users')->skip(10)->take(5)->get();
Joins 
// Basic Join StatementDB::table('users')
->join('contacts', 'users.id', '=', 'contacts.user_id')
->join('orders', 'users.id', '=', 'orders.user_id')
->select('users.id', 'contacts.phone', 'orders.price')
->get();
// Left Join StatementDB::table('users')
->leftJoin('posts', 'users.id', '=', 'posts.user_id')
->get();
// select * from users where name = 'John' or (votes > 100 and title <> 'Admin')DB::table('users')
->where('name', '=', 'John')
->orWhere(function($query)
{
$query
->where('votes', '>', 100)
->where('title', '<>', 'Admin');
})
->get();
Aggregates 
$users = DB::table('users')->count();
$price
= DB::table('orders')->max('price');
$price
= DB::table('orders')->min('price');
$price
= DB::table('orders')->avg('price');
$total
= DB::table('users')->sum('votes');

DB
::table('name')->remember(5)->get();
DB
::table('name')->remember(5, 'cache-key-name')->get();
DB
::table('name')->cacheTags('my-key')->remember(5)->get();
DB
::table('name')->cacheTags(array('my-first-key','my-second-key'))->remember(5)->get();
Raw Expressions 
$users = DB::table('users')
->select(DB::raw('count(*) as user_count, status'))
->where('status', '<>', 1)
->groupBy('status')
->get();
// return rowsDB::select('select * from users where id = ?', array('value'));
// return nr affected rowsDB::insert('insert into foo set bar=2');
DB
::update('update foo set bar=2');
DB
::delete('delete from bar');
// returns voidDB::statement('update foo set bar=2');
// raw expression inside a statementDB::table('name')->select(DB::raw('count(*) as count, column2'))->get();
Inserts / Updates / Deletes / Unions / Pessimistic Locking
// InsertsDB::table('users')->insert(
['email' => 'john@example.com', 'votes' => 0]
);
$id
= DB::table('users')->insertGetId(
['email' => 'john@example.com', 'votes' => 0]
);
DB
::table('users')->insert([
['email' => 'taylor@example.com', 'votes' => 0],
['email' => 'dayle@example.com', 'votes' => 0]
]);
// UpdatesDB::table('users')
->where('id', 1)
->update(['votes' => 1]);
DB
::table('users')->increment('votes');
DB
::table('users')->increment('votes', 5);
DB
::table('users')->decrement('votes');
DB
::table('users')->decrement('votes', 5);
DB
::table('users')->increment('votes', 1, ['name' => 'John']);
// DeletesDB::table('users')->where('votes', '<', 100)->delete();
DB
::table('users')->delete();
DB
::table('users')->truncate();
// Unions// The unionAll() method is also available, and has the same method signature as union.$first = DB::table('users')->whereNull('first_name');
$users
= DB::table('users')->whereNull('last_name')->union($first)->get();
// Pessimistic LockingDB::table('users')->where('votes', '>', 100)->sharedLock()->get();
DB
::table('users')->where('votes', '>', 100)->lockForUpdate()->get();

Model 

Basic Usage 
// Defining An Eloquent Modelclass User extends Model {}
// generate Eloquent modelsphp artisan make:model User
// specify a custom table nameclass User extends Model {
protected $table = 'my_users';
}
More
Model::create(array('key' => 'value'));
// Find first matching record by attributes or createModel::firstOrCreate(array('key' => 'value'));
// Find first record by attributes or instantiateModel::firstOrNew(array('key' => 'value'));
// Create or update a record matching attibutes, and fill with valuesModel::updateOrCreate(array('search_key' => 'search_value'), array('key' => 'value'));
// Fill a model with an array of attributes, beware of mass assignment!Model::fill($attributes);
Model::destroy(1);
Model::all();
Model::find(1);
// Find using dual primary keyModel::find(array('first', 'last'));
// Throw an exception if the lookup failsModel::findOrFail(1);
// Find using dual primary key and throw exception if the lookup failsModel::findOrFail(array('first', 'last'));
Model::where('foo', '=', 'bar')->get();
Model::where('foo', '=', 'bar')->first();
// dynamicModel::whereFoo('bar')->first();
// Throw an exception if the lookup failsModel::where('foo', '=', 'bar')->firstOrFail();
Model::where('foo', '=', 'bar')->count();
Model::where('foo', '=', 'bar')->delete();
//Output raw queryModel::where('foo', '=', 'bar')->toSql();
Model::whereRaw('foo = bar and cars = 2', array(20))->get();
Model::remember(5)->get();
Model::remember(5, 'cache-key-name')->get();
Model::cacheTags('my-tag')->remember(5)->get();
Model::cacheTags(array('my-first-key','my-second-key'))->remember(5)->get();
Model::on('connection-name')->find(1);
Model::with('relation')->get();
Model::all()->take(10);
Model::all()->skip(10);
// Default Eloquent sort is ascendantModel::all()->orderBy('column');
Model::all()->orderBy('column','desc');
Soft Delete 
Model::withTrashed()->where('cars', 2)->get();
// Include the soft deleted models in the resultsModel::withTrashed()->where('cars', 2)->restore();
Model::where('cars', 2)->forceDelete();
// Force the result set to only included soft deletesModel::onlyTrashed()->where('cars', 2)->get();
Events
Model::creating(function($model){});
Model::created(function($model){});
Model::updating(function($model){});
Model::updated(function($model){});
Model::saving(function($model){});
Model::saved(function($model){});
Model::deleting(function($model){});
Model::deleted(function($model){});
Model::observe(new FooObserver);
Eloquent Configuration
// Disables mass assignment exceptions from being thrown from model inserts and updatesEloquent::unguard();
// Renables any ability to throw mass assignment exceptionsEloquent::reguard();

Pagination 

// Auto-Magic PaginationModel::paginate(15);
Model::where('cars', 2)->paginate(15);
// "Next" and "Previous" onlyModel::where('cars', 2)->simplePaginate(15);
// Manual PaginatorPaginator::make($items, $totalItems, $perPage);
// Print page navigators in view$variable->links();

Lang 

App::setLocale('en');
Lang::get('messages.welcome');
Lang::get('messages.welcome', array('foo' => 'Bar'));
Lang::has('messages.welcome');
Lang::choice('messages.apples', 10);
// Lang::get aliastrans('messages.welcome');

File 

File::exists('path');
File::get('path');
File::getRemote('path');
// Get a file's contents by requiring itFile::getRequire('path');
// Require the given file onceFile::requireOnce('path');
// Write the contents of a fileFile::put('path', 'contents');
// Append to a fileFile::append('path', 'data');
// Delete the file at a given pathFile::delete('path');
// Move a file to a new locationFile::move('path', 'target');
// Copy a file to a new locationFile::copy('path', 'target');
// Extract the file extension from a file pathFile::extension('path');
// Get the file type of a given fileFile::type('path');
// Get the file size of a given fileFile::size('path');
// Get the file's last modification timeFile::lastModified('path');
// Determine if the given path is a directoryFile::isDirectory('directory');
// Determine if the given path is writableFile::isWritable('path');
// Determine if the given path is a fileFile::isFile('file');
// Find path names matching a given pattern.File::glob($patterns, $flag);
// Get an array of all files in a directory.File::files('directory');
// Get all of the files from the given directory (recursive).File::allFiles('directory');
// Get all of the directories within a given directory.File::directories('directory');
// Create a directoryFile::makeDirectory('path', $mode = 0777, $recursive = false);
// Copy a directory from one location to anotherFile::copyDirectory('directory', 'destination', $options = null);
// Recursively delete a directoryFile::deleteDirectory('directory', $preserve = false);
// Empty the specified directory of all files and foldersFile::cleanDirectory('directory');

UnitTest 

Install and run
// add to composer and update:"phpunit/phpunit": "4.0.*"
// run tests (from project root)./vendor/bin/phpunit
Asserts
$this->assertTrue(true);
$this
->assertEquals('foo', $bar);
$this
->assertCount(1,$times);
$this
->assertResponseOk();
$this
->assertResponseStatus(403);
$this
->assertRedirectedTo('foo');
$this
->assertRedirectedToRoute('route.name');
$this
->assertRedirectedToAction('Controller@method');
$this
->assertViewHas('name');
$this
->assertViewHas('age', $value);
$this
->assertSessionHasErrors();
// Asserting the session has errors for a given key...$this->assertSessionHasErrors('name');
// Asserting the session has errors for several keys...$this->assertSessionHasErrors(array('name', 'age'));
$this
->assertHasOldInput();
Calling routes
$response = $this->call($method, $uri, $parameters, $files, $server, $content);
$response
= $this->callSecure('GET', 'foo/bar');
$this
->session(['foo' => 'bar']);
$this
->flushSession();
$this
->seed();
$this
->seed($connection);

SSH 

Executing Commands
SSH::run(array $commands);
SSH
::into($remote)->run(array $commands); // specify remote, otherwise assumes defaultSSH::run(array $commands, function($line)
{
echo $line
.PHP_EOL;
});
Tasks
// defineSSH::define($taskName, array $commands);
// executeSSH::task($taskName, function($line)
{
echo $line
.PHP_EOL;
});
SFTP Uploads
SSH::put($localFile, $remotePath);
SSH
::putString($string, $remotePath);

Schema 

// Indicate that the table needs to be createdSchema::create('table', function($table)
{
$table
->increments('id');
});
// Specify a ConnectionSchema::connection('foo')->create('table', function($table){});
// Rename the table to a given nameSchema::rename($from, $to);
// Indicate that the table should be droppedSchema::drop('table');
// Indicate that the table should be dropped if it existsSchema::dropIfExists('table');
// Determine if the given table existsSchema::hasTable('table');
// Determine if the given table has a given columnSchema::hasColumn('table', 'column');
// Update an existing tableSchema::table('table', function($table){});
// Indicate that the given columns should be renamed$table->renameColumn('from', 'to');
// Indicate that the given columns should be dropped$table->dropColumn(string|array);
// The storage engine that should be used for the table$table->engine = 'InnoDB';
// Only work on MySQL$table->string('name')->after('email');
Indexes
$table->string('column')->unique();
$table
->primary('column');
// Creates a dual primary key$table->primary(array('first', 'last'));
$table
->unique('column');
$table
->unique('column', 'key_name');
// Creates a dual unique index$table->unique(array('first', 'last'));
$table
->unique(array('first', 'last'), 'key_name');
$table
->index('column');
$table
->index('column', 'key_name');
// Creates a dual index$table->index(array('first', 'last'));
$table
->index(array('first', 'last'), 'key_name');
$table
->dropPrimary('table_column_primary');
$table
->dropUnique('table_column_unique');
$table
->dropIndex('table_column_index');
Foreign Keys
$table->foreign('user_id')->references('id')->on('users');
$table
->foreign('user_id')->references('id')->on('users')->onDelete('cascade'|'restrict'|'set null'|'no action');
$table
->foreign('user_id')->references('id')->on('users')->onUpdate('cascade'|'restrict'|'set null'|'no action');
$table
->dropForeign('posts_user_id_foreign');
Column Types
// Increments$table->increments('id');
$table
->bigIncrements('id');

// Numbers$table->integer('votes');
$table
->tinyInteger('votes');
$table
->smallInteger('votes');
$table
->mediumInteger('votes');
$table
->bigInteger('votes');
$table
->float('amount');
$table
->double('column', 15, 8);
$table
->decimal('amount', 5, 2);

//String and Text$table->char('name', 4);
$table
->string('email');
$table
->string('name', 100);
$table
->text('description');
$table
->mediumText('description');
$table
->longText('description');

//Date and Time$table->date('created_at');
$table
->dateTime('created_at');
$table
->time('sunrise');
$table
->timestamp('added_on');
// Adds created_at and updated_at columns$table->timestamps();
$table
->nullableTimestamps();

// Others$table->binary('data');
$table
->boolean('confirmed');
// Adds deleted_at column for soft deletes$table->softDeletes();
$table
->enum('choices', array('foo', 'bar'));
// Adds remember_token as VARCHAR(100) NULL$table->rememberToken();
// Adds INTEGER parent_id and STRING parent_type$table->morphs('parent');
->nullable()
->default($value)
->unsigned()

Input 

Input::get('key');
// Default if the key is missingInput::get('key', 'default');
Input::has('key');
Input::all();
// Only retrieve 'foo' and 'bar' when getting inputInput::only('foo', 'bar');
// Disregard 'foo' when getting inputInput::except('foo');
Input::flush();
Session Input (flash)
// Flash input to the sessionInput::flash();
// Flash only some of the input to the sessionInput::flashOnly('foo', 'bar');
// Flash only some of the input to the sessionInput::flashExcept('foo', 'baz');
// Retrieve an old input itemInput::old('key','default_value');
Files
// Use a file that's been uploadedInput::file('filename');
// Determine if a file was uploadedInput::hasFile('filename');
// Access file propertiesInput::file('name')->getRealPath();
Input::file('name')->getClientOriginalName();
Input::file('name')->getClientOriginalExtension();
Input::file('name')->getSize();
Input::file('name')->getMimeType();
// Move an uploaded fileInput::file('name')->move($destinationPath);
// Move an uploaded fileInput::file('name')->move($destinationPath, $fileName);

Cache 

Cache::put('key', 'value', $minutes);
Cache::add('key', 'value', $minutes);
Cache::forever('key', 'value');
Cache::remember('key', $minutes, function(){ return 'value' });
Cache::rememberForever('key', function(){ return 'value' });
Cache::forget('key');
Cache::has('key');
Cache::get('key');
Cache::get('key', 'default');
Cache::get('key', function(){ return 'default'; });
Cache::tags('my-tag')->put('key','value', $minutes);
Cache::tags('my-tag')->has('key');
Cache::tags('my-tag')->get('key');
Cache::tags('my-tag')->forget('key');
Cache::tags('my-tag')->flush();
Cache::increment('key');
Cache::increment('key', $amount);
Cache::decrement('key');
Cache::decrement('key', $amount);
Cache::section('group')->put('key', $value);
Cache::section('group')->get('key');
Cache::section('group')->flush();

Cookie 

Cookie::get('key');
Cookie::get('key', 'default');
// Create a cookie that lasts for everCookie::forever('key', 'value');
// Create a cookie that lasts N minutesCookie::make('key', 'value', 'minutes');
// Set a cookie before a response has been createdCookie::queue('key', 'value', 'minutes');
// Forget cookieCookie::forget('key');
// Send a cookie with a response$response = Response::make('Hello World');
// Add a cookie to the response$response->withCookie(Cookie::make('name', 'value', $minutes));

Session 

Session::get('key');
// Returns an item from the sessionSession::get('key', 'default');
Session::get('key', function(){ return 'default'; });
// Get the session IDSession::getId();
// Put a key / value pair in the sessionSession::put('key', 'value');
// Push a value into an array in the sessionSession::push('foo.bar','value');
// Returns all items from the sessionSession::all();
// Checks if an item is definedSession::has('key');
// Remove an item from the sessionSession::forget('key');
// Remove all of the items from the sessionSession::flush();
// Generate a new session identifierSession::regenerate();
// Flash a key / value pair to the sessionSession::flash('key', 'value');
// Reflash all of the session flash dataSession::reflash();
// Reflash a subset of the current flash dataSession::keep(array('key1', 'key2'));

Request 

// url: http://xx.com/aa/bbRequest::url();
// path: /aa/bbRequest::path();
// getRequestUri: /aa/bb/?c=dRequest::getRequestUri();
// Returns user's IPRequest::getClientIp();
// getUri: http://xx.com/aa/bb/?c=dRequest::getUri();
// getQueryString: c=dRequest::getQueryString();
// Get the port scheme of the request (e.g., 80, 443, etc.)Request::getPort();
// Determine if the current request URI matches a patternRequest::is('foo/*');
// Get a segment from the URI (1 based index)Request::segment(1);
// Retrieve a header from the requestRequest::header('Content-Type');
// Retrieve a server variable from the requestRequest::server('PATH_INFO');
// Determine if the request is the result of an AJAX callRequest::ajax();
// Determine if the request is over HTTPSRequest::secure();
// Get the request methodRequest::method();
// Checks if the request method is of specified typeRequest::isMethod('post');
// Get raw POST dataRequest::instance()->getContent();
// Get requested response formatRequest::format();
// true if HTTP Content-Type header contains */jsonRequest::isJson();
// true if HTTP Accept header is application/jsonRequest::wantsJson();

Response 

return Response::make($contents);
return Response::make($contents, 200);
return Response::json(array('key' => 'value'));
return Response::json(array('key' => 'value'))
->setCallback(Input::get('callback'));
return Response::download($filepath);
return Response::download($filepath, $filename, $headers);
// Create a response and modify a header value$response = Response::make($contents, 200);
$response
->header('Content-Type', 'application/json');
return $response;
// Attach a cookie to a responsereturn Response::make($content)
->withCookie(Cookie::make('key', 'value'));

Redirect 

return Redirect::to('foo/bar');
return Redirect::to('foo/bar')->with('key', 'value');
return Redirect::to('foo/bar')->withInput(Input::get());
return Redirect::to('foo/bar')->withInput(Input::except('password'));
return Redirect::to('foo/bar')->withErrors($validator);
// Create a new redirect response to the previous locationreturn Redirect::back();
// Create a new redirect response to a named routereturn Redirect::route('foobar');
return Redirect::route('foobar', array('value'));
return Redirect::route('foobar', array('key' => 'value'));
// Create a new redirect response to a controller actionreturn Redirect::action('FooController@index');
return Redirect::action('FooController@baz', array('value'));
return Redirect::action('FooController@baz', array('key' => 'value'));
// If intended redirect is not defined, defaults to foo/bar.return Redirect::intended('foo/bar');

Container 

App::bind('foo', function($app){ return new Foo; });
App::make('foo');
// If this class exists, it's returnedApp::make('FooBar');
// Register a shared binding in the containerApp::singleton('foo', function(){ return new Foo; });
// Register an existing instance as shared in the containerApp::instance('foo', new Foo);
// Register a binding with the containerApp::bind('FooRepositoryInterface', 'BarRepository');
// Register a service provider with the applicationApp::register('FooServiceProvider');
// Listen for object resolutionApp::resolving(function($object){});

Security

Hashing 
Hash::make('secretpassword');
Hash::check('secretpassword', $hashedPassword);
Hash::needsRehash($hashedPassword);
Encryption
Crypt::encrypt('secretstring');
Crypt::decrypt($encryptedString);
Crypt::setMode('ctr');
Crypt::setCipher($cipher);

Auth

Authentication 
// Determine if the current user is authenticatedAuth::check();
// Get the currently authenticated userAuth::user();
// Get the ID of the currently authenticated userAuth::id();
// Attempt to authenticate a user using the given credentialsAuth::attempt(array('email' => $email, 'password' => $password));
// 'Remember me' by passing true to Auth::attempt()Auth::attempt($credentials, true);
// Log in for a single requestAuth::once($credentials);
// Log a user into the applicationAuth::login(User::find(1));
// Log the given user ID into the applicationAuth::loginUsingId(1);
// Log the user out of the applicationAuth::logout();
// Validate a user's credentialsAuth::validate($credentials);
// Attempt to authenticate using HTTP Basic AuthAuth::basic('username');
// Perform a stateless HTTP Basic login attemptAuth::onceBasic();
// Send a password reminder to a userPassword::remind($credentials, function($message, $user){});
Authorization 
// Define abilitiesGate::define('update-post', 'Class@method');
Gate::define('update-post', function ($user, $post) {...});
// Passing multiple argumentGate::define('delete-comment', function ($user, $post, $comment) {});

// Check abilitiesGate::denies('update-post', $post);
Gate::allows('update-post', $post);
Gate::check('update-post', $post);
// Specified a user for checkingGate::forUser($user)->allows('update-post', $post);
// Through User model, using Authorizable traitUser::find(1)->can('update-post', $post);
User::find(1)->cannot('update-post', $post);

// Intercepting Authorization ChecksGate::before(function ($user, $ability) {});
Gate::after(function ($user, $ability) {});

// Chekcing in Blade template@can('update-post', $post)
@endcan
// with else@can('update-post', $post)
@else
@endcan

// Generate a Policyphp artisan make:policy PostPolicy
// `policy` helper functionpolicy($post)->update($user, $post)

// Controller Authorization$this->authorize('update', $post);
// for $user$this->authorizeForUser($user, 'update', $post);

Mail 

Mail::send('email.view', $data, function($message){});
Mail::send(array('html.view', 'text.view'), $data, $callback);
Mail::queue('email.view', $data, function($message){});
Mail::queueOn('queue-name', 'email.view', $data, $callback);
Mail::later(5, 'email.view', $data, function($message){});
// Write all email to logs instead of sendingMail::pretend();
Messages
// These can be used on the $message instance passed into Mail::send() or Mail::queue()$message->from('email@example.com', 'Mr. Example');
$message
->sender('email@example.com', 'Mr. Example');
$message
->returnPath('email@example.com');
$message
->to('email@example.com', 'Mr. Example');
$message
->cc('email@example.com', 'Mr. Example');
$message
->bcc('email@example.com', 'Mr. Example');
$message
->replyTo('email@example.com', 'Mr. Example');
$message
->subject('Welcome to the Jungle');
$message
->priority(2);
$message
->attach('foo\bar.txt', $options);
// This uses in-memory data as attachments$message->attachData('bar', 'Data Name', $options);
// Embed a file in the message and get the CID$message->embed('foo\bar.txt');
$message
->embedData('foo', 'Data Name', $options);
// Get the underlying Swift Message instance$message->getSwiftMessage();

Queue 

Queue::push('SendMail', array('message' => $message));
Queue::push('SendEmail@send', array('message' => $message));
Queue::push(function($job) use $id {});
// Same payload to multiple workersQueue::bulk(array('SendEmail', 'NotifyUser'), $payload);
// Starting the queue listenerphp artisan queue:listen
php artisan queue
:listen connection
php artisan queue
:listen --timeout=60
// Process only the first job on the queuephp artisan queue:work
// Start a queue worker in daemon modephp artisan queue:work --daemon
// Create migration file for failed jobsphp artisan queue:failed-table
// Listing failed jobsphp artisan queue:failed
// Delete failed job by idphp artisan queue:forget 5
// Delete all failed jobsphp artisan queue:flush

Validation 

Validator::make(
array
('key' => 'Foo'),
array
('key' => 'required|in:Foo')
);
Validator::extend('foo', function($attribute, $value, $params){});
Validator::extend('foo', 'FooValidator@validate');
Validator::resolver(function($translator, $data, $rules, $msgs)
{
return new FooValidator($translator, $data, $rules, $msgs);
});
Rules
accepted
active_url
after
:YYYY-MM-DD
before
:YYYY-MM-DD
alpha
alpha_dash
alpha_num
array
between
:1,10
confirmed
date
date_format
:YYYY-MM-DD
different
:fieldname
digits
:value
digits_between
:min,max
boolean
email
exists
:table,column
image
in:foo,bar,...
not_in
:foo,bar,...
integer
numeric
ip
max
:value
min
:value
mimes
:jpeg,png
regex
:[0-9]
required
required_if
:field,value
required_with
:foo,bar,...
required_with_all
:foo,bar,...
required_without
:foo,bar,...
required_without_all
:foo,bar,...
same
:field
size
:value
timezone
unique
:table,column,except,idColumn
url

View 

View::make('path/to/view');
View::make('foo/bar')->with('key', 'value');
View::make('foo/bar')->withKey('value');
View::make('foo/bar', array('key' => 'value'));
View::exists('foo/bar');
// Share a value across all viewsView::share('key', 'value');
// Nesting viewsView::make('foo/bar')->nest('name', 'foo/baz', $data);
// Register a view composerView::composer('viewname', function($view){});
//Register multiple views to a composerView::composer(array('view1', 'view2'), function($view){});
// Register a composer classView::composer('viewname', 'FooComposer');
View::creator('viewname', function($view){});

Blade 

// Show a section in a template@yield('name')
@extends('layout.name')
// Begin a section@section('name')
// End a section@stop
// End a section and yield@section('sidebar')
@show
@parent

@include('view.name')
@include('view.name', array('key' => 'value'));
@lang('messages.name')
@choice('messages.name', 1);

@if
@else
@elseif
@endif

@unless
@endunless

@for
@endfor

@foreach
@endforeach

@while
@endwhile

//forelse 4.2 feature@forelse($users as $user)
@empty
@endforelse

// Echo content{{ $var }}
// Echo escaped content{{{ $var }}}
// Echo unescaped content; 5.0 feature{!! $var !!}
{{-- Blade Comment --}}
// Echoing Data After Checking For Existence{{{ $name or 'Default' }}}
// Displaying Raw Text With Curly Braces@{{ This will not be processed by Blade }}

Form 

Form::open(array('url' => 'foo/bar', 'method' => 'PUT'));
Form::open(array('route' => 'foo.bar'));
Form::open(array('route' => array('foo.bar', $parameter)));
Form::open(array('action' => 'FooController@method'));
Form::open(array('action' => array('FooController@method', $parameter)));
Form::open(array('url' => 'foo/bar', 'files' => true));
Form::close();
Form::token();
Form::model($foo, array('route' => array('foo.bar', $foo->bar)));

Form Elements
Form::label('id', 'Description');
Form::label('id', 'Description', array('class' => 'foo'));
Form::text('name');
Form::text('name', $value);
Form::text('name', $value, array('class' => 'name'));
Form::textarea('name');
Form::textarea('name', $value);
Form::textarea('name', $value, array('class' => 'name'));
Form::hidden('foo', $value);
Form::password('password');
Form::password('password', array('placeholder' => 'Password'));
Form::email('name', $value, array());
Form::file('name', array('class' => 'name'));
Form::checkbox('name', 'value');
// Generating a checkbox that is checkedForm::checkbox('name', 'value', true, array('class' => 'name'));
Form::radio('name', 'value');
// Generating a radio input that is selectedForm::radio('name', 'value', true, array('class' => 'name'));
Form::select('name', array('key' => 'value'));
Form::select('name', array('key' => 'value'), 'key', array('class' => 'name'));
Form::selectRange('range', 1, 10);
Form::selectYear('year', 2011, 2015);
Form::selectMonth('month');
Form::submit('Submit!', array('class' => 'name'));
Form::button('name', array('class' => 'name'));
Form::macro('fooField', function()
{
return '<input type="custom"/>';
});
Form::fooField();

HTML

HTML::macro('name', function(){});
// Convert an HTML string to entitiesHTML::entities($value);
// Convert entities to HTML charactersHTML::decode($value);
// Generate a link to a JavaScript fileHTML::script($url, $attributes);
// Generate a link to a CSS fileHTML::style($url, $attributes);
// Generate an HTML image elementHTML::image($url, $alt, $attributes);
// Generate a HTML linkHTML::link($url, 'title', $attributes, $secure);
// Generate a HTTPS HTML linkHTML::secureLink($url, 'title', $attributes);
// Generate a HTML link to an assetHTML::linkAsset($url, 'title', $attributes, $secure);
// Generate a HTTPS HTML link to an assetHTML::linkSecureAsset($url, 'title', $attributes);
// Generate a HTML link to a named routeHTML::linkRoute($name, 'title', $parameters, $attributes);
// Generate a HTML link to a controller actionHTML::linkAction($action, 'title', $parameters, $attributes);
// Generate a HTML link to an email addressHTML::mailto($email, 'title', $attributes);
// Obfuscate an e-mail address to prevent spam-bots from sniffing itHTML::email($email);
// Generate an ordered list of itemsHTML::ol($list, $attributes);
// Generate an un-ordered list of itemsHTML::ul($list, $attributes);
// Create a listing HTML elementHTML::listing($type, $list, $attributes);
// Create the HTML for a listing elementHTML::listingElement($key, $type, $value);
// Create the HTML for a nested listing attributeHTML::nestedListing($key, $type, $value);
// Build an HTML attribute string from an arrayHTML::attributes($attributes);
// Build a single attribute elementHTML::attributeElement($key, $value);
// Obfuscate a string to prevent spam-bots from sniffing itHTML::obfuscate($value);

String 

// Transliterate a UTF-8 value to ASCIIStr::ascii($value)
Str::camel($value)
Str::contains($haystack, $needle)
Str::endsWith($haystack, $needles)
// Cap a string with a single instance of a given value.Str::finish($value, $cap)
Str::is($pattern, $value)
Str::length($value)
Str::limit($value, $limit = 100, $end = '...')
Str::lower($value)
Str::words($value, $words = 100, $end = '...')
Str::plural($value, $count = 2)
// Generate a more truly "random" alpha-numeric string.Str::random($length = 16)
// Generate a "random" alpha-numeric string.Str::quickRandom($length = 16)
Str::upper($value)
Str::title($value)
Str::singular($value)
Str::slug($title, $separator = '-')
Str::snake($value, $delimiter = '_')
Str::startsWith($haystack, $needles)
// Convert a value to studly caps case.Str::studly($value)
Str::macro($name, $macro)

Helper 

Arrays
// adds a given key / value pair to the array if the// given key doesn't already exist in the arrayarray_add($array, 'key', 'value');
// collapse an array of arrays into a single arrayarray_collapse($array);
// Divide an array into two arrays. One with keys and the other with valuesarray_divide($array);
// Flatten a multi-dimensional associative array with dotsarray_dot($array);
// Get all of the given array except for a specified array of itemsarray_except($array, array('key'));
// Return the first element in an array passing a given truth testarray_first($array, function($key, $value){}, $default);
// Strips keys from the arrayarray_flatten($array);
// Remove one or many array items from a given array using "dot" notationarray_forget($array, 'foo');
// Dot notationarray_forget($array, 'foo.bar');
// Get an item from an array using "dot" notationarray_get($array, 'foo', 'default');
array_get
($array, 'foo.bar', 'default');
// Checks that a given item exists in an array using "dot" notationarray_has($array, 'products.desk');
// Get a subset of the items from the given arrayarray_only($array, array('key'));
// Return array of key => valuesarray_pluck($array, 'key');
// Return and remove 'key' from arrayarray_pull($array, 'key');
// Set an array item to a given value using "dot" notationarray_set($array, 'key', 'value');
// Dot notationarray_set($array, 'key.subkey', 'value');
// Sorts the array by the results of the given Closurearray_sort($array, function(){});
// Recursively sorts the array using the sort functionarray_sort_recursive();
// Filters the array using the given Closurearray_where();
// First element of an arrayhead($array);
// Last element of an arraylast($array);
Paths
// Fully qualified path to the app directoryapp_path();
// Get the path to the public folderbase_path();
// Fully qualified path to the application configuration directoryconfig_path();
// Fully qualified path to the application's database directorydatabase_path();
// Gets the path to the versioned Elixir file:elixir();
// Fully qualified path to the public directorypublic_path();
// Get the path to the storage folderstorage_path();
Strings
// Convert a value to camel casecamel_case($value);
// Get the class "basename" of the given object / classclass_basename($class);
// Escape a stringe('<html>');
// Determine if a given string starts with a given substringstarts_with('Foo bar.', 'Foo');
// Determine if a given string ends with a given substringends_with('Foo bar.', 'bar.');
// Convert a string to snake casesnake_case('fooBar');
// Limits the number of characters in a stringstr_limit();
// Determine if a given string contains a given substringstr_contains('Hello foo bar.', 'foo');
// Result: foo/bar/str_finish('foo/bar', '/');
str_is
('foo*', 'foobar');
str_plural
('car');
str_random
(25);
str_singular
('cars');
str_slug
("Laravel 5 Framework", "-");
// Result: FooBarstudly_case('foo_bar');
trans
('foo.bar');
trans_choice
('foo.bar', $count);
URLs and Links
action('FooController@method', $parameters);
// HTML Linkasset('img/photo.jpg', $title, $attributes);
// HTTPS linksecure_asset('img/photo.jpg', $title, $attributes);
route
($route, $parameters, $absolute = true);
url
('path', $parameters = array(), $secure = null);
Miscellaneous
// Authenticator instance (Auth)auth()->user();
// Generates a redirect response to the user's previous locationback();
// Hashes the given value using Bcrypt (Hash)bcrypt('my-secret-password');
// Creates a collection instance from the supplied itemscollect(['taylor', 'abigail']);
// Gets the value of a configuration variableconfig('app.timezone', $default);
// Generates an HTML hidden input field containing the value of the CSRF token{!! csrf_field() !!}
// Retrieves the value of the current CSRF token$token = csrf_token();
// Dumps the given variable and ends execution of the scriptdd($value);
// Gets the value of an environment variable or returns a default value$env = env('APP_ENV');
$env
= env('APP_ENV', 'production');
// Dispatches the given event to its listeners:event(new UserRegistered($user));
// Creates a model factory builder for a given class$user = factory(App\User::class)->make();
// Generates an HTML hidden input field containing the spoofed value of the form's HTTP verb{!! method_field('delete') !!}
// Retrieves an old input value flashed into the session$value = old('value');
$value
= old('value', 'default');
// Returns an instance of the redirector to do redirects:return redirect('/home');
// Returns the current request instance or obtains an input item$value = request('key', $default = null)
// Creates a response instance or obtains an instance of the response factoryreturn response('Hello World', 200, $headers);
// Used to get / set a session value$value = session('key');
$value
= session()->get('key');
session
()->put('key', $value);
// Will simply return the value it is given.value(function(){ return 'bar'; });
// Retrieves a view instancereturn view('auth.login');
// Returns the value it is given$value = with(new Foo)->work();
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Email ThisBlogThis!Share to XShare to Facebook

Related Posts:

  • Laravel Cheat Sheet for Eloquent ORM Zero To Master ORM (Object Relational Mapping) is used to facilitate database CRUD operations. Laravel comes with Eloquent ORM. This tutorial was created to pr… Read More
  • Laravel Cheatsheep Master Artisan // Added in 5.1.11:http://laravel.com/docs/authorization#creating-policiesphp artisan make:policy PostPolicy// Displays help for a … Read More
Newer Post Older Post Home

0 comments:

Post a Comment

Thanks

Meta

Popular Posts

  • Spring boot app (error: method getFirst()) failed to run at local machine, but can run on server
    The Spring boot app can run on the online server. Now, we want to replicate the same app at the local machine but the Spring boot jar file f...
  • Log activity in a Laravel app with Spatie/Laravel-Activitylog
      Requirements This package needs PHP 8.1+ and Laravel 9.0 or higher. The latest version of this package needs PHP 8.2+ and Laravel 8 or hig...
  • Laravel auth login with phone or email
          <?php     Laravel auth login with phone or email     <? php     namespace App \ Http \ Controllers \ Auth ;         use ...
  • Vue3 :style backgroundImage not working with require
    I'm trying to migrate a Vue 2 project to Vue 3. In Vue 2 I used v-bind style as follow: In Vue 3 this doesn't work... I tried a...
  • Failed to install 'cordova-plugin-firebase': CordovaError: Uh oh
    I had follow these steps to install an configure firebase to my cordova project for cloud messaging. https://medium.com/@felipepucinelli/how...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (68)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • September (100)
  • August (50)
  • July (56)
  • June (46)
  • May (59)
  • April (50)
  • March (60)
  • February (42)
  • January (53)
  • December (58)
  • November (61)
  • October (39)
  • September (36)
  • August (36)
  • July (34)
  • June (34)
  • May (36)
  • April (29)
  • March (82)
  • February (1)
  • January (8)
  • December (14)
  • November (41)
  • October (13)
  • September (5)
  • August (48)
  • July (9)
  • June (6)
  • May (119)
  • April (259)
  • March (122)
  • February (368)
  • January (33)
  • October (2)
  • July (11)
  • June (29)
  • May (25)
  • April (168)
  • March (93)
  • February (60)
  • January (28)
  • December (195)
  • November (24)
  • October (40)
  • September (55)
  • August (6)
  • July (48)
  • May (2)
  • January (2)
  • July (6)
  • June (6)
  • February (17)
  • January (69)
  • December (122)
  • November (56)
  • October (92)
  • September (76)
  • August (6)

  • Failed to install 'cordova-plugin-firebase': CordovaError: Uh oh - 9/21/2024
  • pyspark XPath Query Returns Lists Omitting Missing Values Instead of Including None - 9/20/2024
  • SQL REPL from within Python/Sqlalchemy/Psychopg2 - 9/20/2024
  • MySql Explain with Tobias Petry - 9/20/2024
  • How to combine information from different devices into one common abstract virtual disk? [closed] - 9/20/2024

Laravel News

  • Validate Controller Requests with the Laravel Data Package - 5/19/2025
  • Deployer - 5/18/2025
  • Transform JSON into Typed Collections with Laravel's AsCollection::of() - 5/18/2025
  • Auto-translate Application Strings with Laratext - 5/16/2025
  • Simplify Factory Associations with Laravel's UseFactory Attribute - 5/13/2025

Copyright © 2025 CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda