route::resource

Route::resource('students', 'StudentController');



Verb          | URI                   | Action          | Route Name
--------------|-----------------------|-----------------|-----------------
GET           | /students             | index           | students.index
GET           | /students/create      | create          | students.create
POST          | /students             | store           | students.store
GET           | /students/{student}   | show            | students.show
GET           | /students/{student}/edit | edit          | students.edit
PUT/PATCH     | /students/{student}   | update          | students.update
DELETE        | /students/{student}   | destroy         | students.destroy

2 comments:

  1. [14:32] Harsh Jayswal

    abstract class A{



    abstract function abc() {}

    }

    [14:33] Harsh Jayswal

    class B{



    $obj = new A();



    $obj->abc();



    }

    ReplyDelete
  2. SELECT * FROM TABLE_NAME GROUPBY EMAIL HAVING COUNT(*) >1;
    $u =0;
    do{

    }
    while($u< 10);

    $a= "s3dg54!fds";
    preg_match_all('/[^a-zA-z0-9\s]/',$a,$specialChars);
    $special_characters=$specialChars[0];

    preg_match_all('/[^a-zA-z0-9]/',$a,$strings);
    $alphanumeric=$string[0][0];

    print_r($special_characters);
    echo $alphanumeric;

    ReplyDelete

Event listening in react

 How we can listen to som eevents some envents fire like click or automatically user enters into input button , that is event on word type i...