Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how i can send by database table in laravel full calendar

use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateEventsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('events', function (Blueprint $table) {
            $table->increments('id');
            $table->string('title');
            $table->date('start_date');
            $table->date('end_date');
            $table->timestamps();
        });
    }
    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop("events");
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #send #database #table #laravel #full #calendar
ADD COMMENT
Topic
Name
8+4 =