List of commits:
Subject Hash Author Date (UTC)
Deleted some files 9c2486581af5e537a7f9ffa64b2b02e8c9d5f42e EyadMohammedOsama 2019-08-02 23:30:55
Updated to ignore Thumbs.db files 3baa87ecef6d298d4a8a2904baf08f7102f23074 EyadMohammedOsama 2019-08-01 21:27:32
Added SnackBar library 99f7cc6ce12deccc4c37ff89eb54d49e0e48d9c9 EyadMohammedOsama 2019-08-01 21:25:47
Added custom style file 99bb9924d4314c9e42be2f3be869b04aeaec134c EyadMohammedOsama 2019-08-01 21:25:28
Added Index view 667711e6118a09a284371bc12fc29c767ded5e9c EyadMohammedOsama 2019-08-01 21:25:18
Added layout views a2c90b3e7b9f5ff340ac8e59a5b48d89758681c1 EyadMohammedOsama 2019-08-01 21:25:08
Added Index controller 9dd0b66b1b62d562af373cfcc3bcf78d250f5ee3 EyadMohammedOsama 2019-08-01 21:24:43
Added Index router 3ff42e9e886700b0bde981bbe2e3c2252215b575 EyadMohammedOsama 2019-08-01 21:24:33
Added carousel images cb9537d5fcf4df2aa2d7ddddaeec4eacc179f84c EyadMohammedOsama 2019-08-01 21:24:03
Updated to skip /public/avatars 00aae37be4441d132f567125ac52dcbb7fea8173 EyadMohammedOsama 2019-08-01 21:23:26
Initial Commit 85fd17c94da1aae46dbd6c80b5376a4dcc4b15ef EyadMohammedOsama 2019-08-01 20:45:13
Commit 9c2486581af5e537a7f9ffa64b2b02e8c9d5f42e - Deleted some files
Author: EyadMohammedOsama
Author date (UTC): 2019-08-02 23:30
Committer name: EyadMohammedOsama
Committer date (UTC): 2019-08-02 23:30
Parent(s): 3baa87ecef6d298d4a8a2904baf08f7102f23074
Signing key:
Tree: 57796babb9e376f2d83604ba2a01aabee71fb443
File Lines added Lines deleted
app/User.php 0 39
database/migrations/2014_10_12_000000_create_users_table.php 0 36
database/migrations/2014_10_12_100000_create_password_resets_table.php 0 32
File app/User.php deleted (index 9a1082d..0000000)
1 <?php
2
3 namespace SICSF;
4
5 use Illuminate\Notifications\Notifiable;
6 use Illuminate\Contracts\Auth\MustVerifyEmail;
7 use Illuminate\Foundation\Auth\User as Authenticatable;
8
9 class User extends Authenticatable
10 {
11 use Notifiable;
12
13 /**
14 * The attributes that are mass assignable.
15 *
16 * @var array
17 */
18 protected $fillable = [
19 'name', 'email', 'password',
20 ];
21
22 /**
23 * The attributes that should be hidden for arrays.
24 *
25 * @var array
26 */
27 protected $hidden = [
28 'password', 'remember_token',
29 ];
30
31 /**
32 * The attributes that should be cast to native types.
33 *
34 * @var array
35 */
36 protected $casts = [
37 'email_verified_at' => 'datetime',
38 ];
39 }
File database/migrations/2014_10_12_000000_create_users_table.php deleted (index 4a3ba47..0000000)
1 <?php
2
3 use Illuminate\Support\Facades\Schema;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Database\Migrations\Migration;
6
7 class CreateUsersTable extends Migration
8 {
9 /**
10 * Run the migrations.
11 *
12 * @return void
13 */
14 public function up()
15 {
16 Schema::create('users', function (Blueprint $table) {
17 $table->bigIncrements('id');
18 $table->string('name');
19 $table->string('email')->unique();
20 $table->timestamp('email_verified_at')->nullable();
21 $table->string('password');
22 $table->rememberToken();
23 $table->timestamps();
24 });
25 }
26
27 /**
28 * Reverse the migrations.
29 *
30 * @return void
31 */
32 public function down()
33 {
34 Schema::dropIfExists('users');
35 }
36 }
File database/migrations/2014_10_12_100000_create_password_resets_table.php deleted (index 0d5cb84..0000000)
1 <?php
2
3 use Illuminate\Support\Facades\Schema;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Database\Migrations\Migration;
6
7 class CreatePasswordResetsTable extends Migration
8 {
9 /**
10 * Run the migrations.
11 *
12 * @return void
13 */
14 public function up()
15 {
16 Schema::create('password_resets', function (Blueprint $table) {
17 $table->string('email')->index();
18 $table->string('token');
19 $table->timestamp('created_at')->nullable();
20 });
21 }
22
23 /**
24 * Reverse the migrations.
25 *
26 * @return void
27 */
28 public function down()
29 {
30 Schema::dropIfExists('password_resets');
31 }
32 }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/EyadMohammedOsama/sicsf

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/EyadMohammedOsama/sicsf

Clone this repository using git:
git clone git://git.rocketgit.com/user/EyadMohammedOsama/sicsf

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main