safriansah

laravel-crud-model

Sep 27th, 2020
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Models;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. use Illuminate\Database\Eloquent\SoftDeletes;
  8.  
  9. class Transactions extends Model
  10. {
  11.     //
  12.     use SoftDeletes;
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment