Old UniVate Website
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Contact.php 220B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Contact extends Model {
  5. protected $table = "contacts";
  6. protected $fillable = [
  7. 'name','surname', 'cell','email','message'
  8. ];
  9. }