1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Created by PhpStorm.
- * User: edz
- * Date: 2019-06-10
- * Time: 17:53
- */
- namespace App\Repositories;
- use App\Models\Behavior;
- use Illuminate\Support\Facades\Log;
- class FeedRepositories
- {
- public function __construct()
- {
- }
- public function feedCreate($request){
- $fans = $request['fans'];
- foreach ($fans as $fan){
- }
- }
- }
|