Интеграция на мащабиране laravel

Примерен код

0
0

<?phpnamespace App\Http\Controllers;use App\Models\ZoomMeeting;use App\Traits\ZoomMeetingTrait;use Illuminate\Http\Request;class MeetingController extends AppBaseController{    use ZoomMeetingTrait;    const MEETING_TYPE_INSTANT = 1;    const MEETING_TYPE_SCHEDULE = 2;    const MEETING_TYPE_RECURRING = 3;    const MEETING_TYPE_FIXED_RECURRING_FIXED = 8;    public function show($id)    {        $meeting = $this->get($id);        return view('meetings.index', compact('meeting'));    }    public function store(Request $request)    {        $this->create($request->all());        return redirect()->route('meetings.index');    }    public function update($meeting, Request $request)    {        $this->update($meeting->zoom_meeting_id, $request->all());        return redirect()->route('meetings.index');    }    public function destroy(ZoomMeeting $meeting)    {        $this->delete($meeting->id);        return $this->sendSuccess('Meeting deleted successfully.');    }}

Подобни страници

Подобни страници с примери

На други езици

Тази страница на други езици

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Íslensk
..................................................................................................................